动手动脑
动手动脑:
// MethodOverload.java
// Using overloaded methods
public class MethodOverload {
public static void main(String[] args) {
System.out.println("The square of integer 7 is " + square(7));
System.out.println("\nThe square of double 7.5 is " + square(7.5));
}
public static int square(int x) {
return x * x;
}
public static double square(double y) {
return y * y;
}
}
本段代码定义了两个函数名相同的square函数,但是参数类型不同,实现了函数的重载。
构成重载的条件:(1)方法名相同;(2)参数类型不同,参数个数不同,或者是参数类型的顺序不同。