动手动脑-Java的方法重载
Posted zhoulonghai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了动手动脑-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(" The square of double 7.5 is " + square(7.5));
}
System.out.println("The square of integer 7 is " + square(7));
System.out.println(" The square of double 7.5 is " + square(7.5));
}
public static int square(int x) {
return x * x;
}
return x * x;
}
public static double square(double y) {
return y * y;
}
}
return y * y;
}
}
满足以下条件的两个或多个方法构成“重载”关系:
(1)方法名相同
(2)参数类型不同,参数个数不同或者参数类型的顺序不同
像System.out.println一样,就是重载的。
所以当实参类型是整型,那么系统会相应的调用形参同样是整型的int square(int x)方法;当实参类型是浮点型,那么系统会相应的调用形参同样是整型的int square(double y)方法;
方法调用跟形参变量名(x,y)没有关系,与形参类型有关。
以上是关于动手动脑-Java的方法重载的主要内容,如果未能解决你的问题,请参考以下文章