pt1调用构造方法后x=3,pt2调用构造方法后x=4,最后输出时,pt1.x是用对象pt1调用x的值,为什么pt1.x=3,此时x不是等于4吗
package com.imooc.person;
public class Test {
int x,y;
public Test(int x,int y) {
this.x=x;
this.y=y;
}
public static void main(String[] args) {
Test pt1=new Test(3,3);
Test pt2=new Test(4,4);
System.out.println(pt1.x+pt2.x);
}
}
相关截图:
15
收起
正在回答 回答被采纳积分+1
1回答
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星