方法重载
作者:互联网
什么是方法重载
方法重载:指在同一个类中,允许存在一个以上的同名方法,只要它们的参数列表不同即可,与修饰符和返回值类型无关。
参数列表不同是指参数的
- 个数不同
- 数据类型不同
- 顺序不同
重载方法调用
- JVM通过方法的参数列表,调用不同的方法。
需求
比较两个数据是否相等。参数类型分别为两个byte类型,两个short类型,两个int类型,两个long类型,并在main方法中进行测试。
代码实现
package demo04; public class Demo02MethodOverloadSame { public static void main(String[] args) { byte a = 10; byte b = 20; System.out.println(isSame(a, b));//false System.out.println(isSame((short) 20, (short) 20));//true System.out.println(isSame(11, 12));//false System.out.println(isSame(10L, 10L));//true } public static boolean isSame(byte a, byte b) { boolean same; if (a == b) { same = true; } else { same = false; } return same; } public static boolean isSame(short a, short b) { boolean same = a == b ? true : false; return same; } public static boolean isSame(int a, int b) { return a == b; } public static boolean isSame(long a, long b) { if (a == b) { return true; } else { return false; } } }
标签:isSame,same,boolean,static,重载,false,方法,public 来源: https://www.cnblogs.com/wurengen/p/11025014.html