static

class Person{
    static int i;
}
class Test{
    public static void main(String args []){
        Person.i=10;
    }
}

static_第1张图片

 

注意,静态函数中不能直接引用非静态成员变量。

 

你可能感兴趣的:(static)