多做题,通过考试没问题!

Java认证考试

睦霖题库>其他计算机考试>Java认证考试

class TestReference{   public static void main(String[] args){   int x=2;   TestReference tr = new TestReference();   System.out.print(x);   tr.change(x);   System.out.print(x);  }   public void change(int num){   num = num + 1;  }  }   程序运行后的输出是哪项()?  

  • A、 23
  • B、 21
  • C、 22
  • D、 编译错误
正确答案:C
答案解析:
进入题库查看解析

微信扫一扫手机做题