标签: java initialization
class A { String mStr; A() { if (mStr == null) { // Does Java guarantee the execution will ALWAYS come here? } } }
我的问题已嵌入上面的代码中。