重载(overload)方法时,参数顺序不一样,仍旧不是一样的方法。
- class Demo{
- public void show(int a,String str){
- System.out.println(a+":"+str);
- }
- public void show(String str,int a){
- System.out.println(str+":"+a);
- }
- }
- public class Sunday{
- public static void main(String[] args){
- Demo demo=new Demo();
- demo.show(10,"abc");
- demo.show("abc",10);
- }
- }
复制代码 output:
10:abc
abc:10
|