方法重载的概念
方法重载:指在
同一个类中,允许存在一个以上的
同名方法,只要它们的
参数列表不同即可,与修饰符和返回值类型无关。
方法重载与下列因素相关
- 参数个数不同
- 参数类型不同
- 参数的多类型顺序不同
方法重载与下列因素无关
- 与参数的名称无关
- 与方法的返回值类型无关
需求
比较两个数据是否相等。参数类型分别为两个byte类型,两个short类型,两个int类型,两个long类型,并在main方法中进行测试。
代码实现
public class Demo02MethodOverloadSame { public static void main(String[] args) { byte a = 10; byte b = 20; System.out.println(isSame(a, b)); System.out.println(isSame((short) 20, (short) 20)); System.out.println(isSame(11, 12)); System.out.println(isSame(10L, 10L)); } public static boolean isSame(byte a, byte b) { System.out.println("两个byte参数的方法执行!"); boolean same; if (a == b) { same = true; } else { same = false; } return same; } public static boolean isSame(short a, short b) { System.out.println("两个short参数的方法执行!"); boolean same = a == b ? true : false; return same; } public static boolean isSame(int a, int b) { System.out.println("两个int参数的方法执行!"); return a == b; } public static boolean isSame(long a, long b) { System.out.println("两个long参数的方法执行!"); if (a == b) { return true; } else { return false; } } }
执行结果