9.22 课后作业
一、
// 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;
}
}
重载:方法名相同、参数类型不同、或参数个数不同或参数类型顺序不同的两个或两个以上的方法构成重载。方法的返回值不作为重载的条件。