标签:blog http 使用 java ar div sp log html
修饰符分类:
public:
protected:
default:
private:
换个角度看:
Q&A:
abstract:
final:
class FinalTest{
private final List foo = new ArrayList();//
public FinalTest()
{
//foo = new ArrayList(); 如果声明时没有初始化,可以在这里初始化
}
public void updateFoo(){
foo.add( new String() );//可以改变被应用对象的值
//foo = new ArrayList(); //编译错误,不能赋予新的对象
}
}
static:
transient:
native:
volatile:
strictfp:
synchronized:
标签:blog http 使用 java ar div sp log html
原文地址:http://www.cnblogs.com/ibalintha/p/3957065.html