Java学习:方法重载的使用规则
方法的重载
对于功能类似的方法来说,因为参数列表不一样,却需要记住那多不同的方法名称,太麻烦。
方法的重载(Overload):多个方法的名称一样,但是参数列表不一样。
好处:只需要记住唯一一个方法名称,就可以实现类似的多个功能。
方法的重载与下列因素相关:
- 参数个数不同
- 参数类型不同
- 参数的多类型顺序不同
方法的重载与下列因素无关:
- 与参数的名称无关
- 与方法的返回值类型无关
例子:
题目要求:
比较两数据是否相等。
参数类型分别为两个byte类型、两个short类型、两个int类型、两个long类型。
并在main方法中进行测试
public class CaiNiao{ 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,22)); 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; } }}
赞 (0)