System.out.println(cmp(5,10)); System.out.println(cmp((short)5,(short)10));
public static boolean cmp(int a,int b){ return a == b; } public static boolean cmp(short a,short b){ return a == b; }
要在调用时候强转类型,才会转到对应类型的方法。
需要改变则需要传递地址