# **一、课前引言**
-
请看一下代码,你发现什么特殊之处了吗?
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)); } public static int square(int x) { return x * x; } public static double square(double y) { return y * y; } }
二、如何重载?如何调用?
上述示例代码展示了Java的“方法重载(overload)”特性。
-
重载的条件
- 两个或多个方法才能构成“重载”关系;
- 方法名一致;
- 参数类型不同,参数个数不同,或者是参数类型的顺序不同;
-
需要注意
方法的返回值不作为方法重载的判断条件。
-
查看JDK文档中System.out.println()方法,发现了什么?
共有10个println()方法构成了“重载关系”,如下图:
-