[求助]请问为什么我的 x,y的值没变
我都调用方法了,为什么输出还是2 1
我都郁闷死了,请人指点~
public class M1 {
void test1(int m,int n){
m=111;
n=1112;
}
public static void main(String[] args) {
int x=2,y=1;
M1 o=new M1();
o.test1(x,y);
System.out.println(x+" "+y);
}
}