package lianxi;
public class StaticTest {
int a = 0;
static int b =0;
StaticTest(){
a++;
b++;//
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
StaticTest st = new StaticTest();
System.out.println("a="+st.a+"............b="+st.b);
StaticTest st2 = new StaticTest();
System.out.println("a="+st2.a+"............b="+st2.b);
//被Static 修饰的变量相当于类属性,这里a是属于对象的,每创建对象,a的值就会再次被
//初始化,而B不同,b属于类
}
}
=================运行结果==============================
a=1............b=1
a=1............b=2
static 修饰的变量在程序中容易出现的问题
时间: 2024-10-06 08:51:15