static只能在成员变量中修饰 为类属性可以被所有对象共享
static修饰的变量或常量只能在类中
拿之前发的调用属性加1的文章来说
public class Count{
private static int n = 0;
public void totalCount(){
n++;
System .out.println(“这是第”+n+“次调用”);
}
public static void main(String[] args) {
Count c1 = new Count();
Count c2 = new Count();
c1.totalCount();
c2.totalCount();
c1.totalCount();
//输出为
这是第一次调用
这是第二次调用
这是第三次调用
}
}