java中一些变量修饰符

public class TestClass{
//成员变量
static int a=1;//类成员变量:该类变量存放于类申明的内存区域,为所有类的实例共享
final int b=2;//最终成员变量:该类型成员变量值不可更改
transient int c=3;//临时成员变量:
volatile int d=4;//并发线程共享变量

/*
* 成员变量 e没有任何修饰符,则为缺省
*/
int e = 11;
public static void main(String[] args) {


}
}

class TestClassVariable {

void test(){
TestClass testClass = new TestClass();
//int e = testClass.e;
//The field TestClass.e is not visible
int e = testClass.e;//这里可以访问TestClass成员变量e
}

}

你可能感兴趣的:(java,C++,c,C#)