Java中静态成员变量

package com.mingrisoft;


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; //将类成员变量赋值为60
//使用第一个对象调用类成员变量
System.out.println("第一个实例对象调用变量i的结果:"+t1.i++);
t1.call(); //使用第一个对象调用类成员方法
//使用第二个对象调用类成员变量
System.out.println("第二个实例对象调用变量i的结果:"+t2.i);
t2.call(); //使用第二个对象调用类成员方法
}

}


由于使用t2.i=60,语句改变了静态变量的值,使对象t1调用成员变量的值也为60,这正是i值被定义为成员变量的功效。


你可能感兴趣的:(Java中静态成员变量)