你不是记错语法了?没有 static constructor 这种东东。。
直接设置静态成员变量的值就能保证当这个类被 ClassLoader 加载的时候被赋值,或者使用
static {
statements;
}
这样的语法来初始化某些需要计算才能得到的初始值。
【 在 ottffsse (nothing) 的大作中提到: 】
: no ,no, no, not constructor, but static constructor. the "static" must not be removed.
--
FROM 112.109.150.*