当前位置:首页
>
查试题
>
类MyClass中有下列方法定义:public void testParams(params int[] arr){ Console.Write(“使用Params参数!”);}public void testParams(int x,int y){ Console.Write(“使用两个整型参数!”);}请问上述方法重载有无二义性?若没有,则下列语句的输出为()。MyClass x=new MyClass(); x.testParams(0); x.testParams(0,1); x.testParams(0,1,2);