单项选择题
class Passer {
static final int x = 5;
public static void main(String [] args) {
new Passer().go(x);
System.out.print(x);
}
void go(int x) {
System.out.print(++x);
}
}
结果是什么?()
A.55
B.56
C.65
D.66
点击查看答案&解析
相关考题
