当前学科:计算机科学与技术
  • 题目: 未知类型
    类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);

      A.有语义二义性

      B.使用Params参数!使用两个整型参数!使用Params参数!

      C.使用Params参数!使用Params参数!使用Params参数!

      D.使用Params参数!使用两个整型参数!使用两个整型参数!

    答案: <查看本题扣1积分>

    查看答案

    答案不对?请尝试站内搜索