62,620
社区成员
发帖
与我相关
我的任务
分享package Practice;
public class TransferProperty {
int i = 47;
public void call() {
System.out.println("调用call()方法");
for (i = 0; i < 3; i++) {
System.out.print(i + " ");
if (i == 2) {
System.out.println("\n");
}
}
}
public TransferProperty() {
}
public static void main(String[] args) {
TransferProperty t1 = new TransferProperty();
TransferProperty t2 = new TransferProperty();
t2.i = 60;
System.out.println("第一个实例对象调用变量i的结果:" + t1.i++);
t1.call();
System.out.println("第二个实例对象调用变量i的结果:" + t2.i);
t2.call();
}
}