class A {
String mStr;
A() {
if (mStr == null) {
// Does Java guarantee the execution will ALWAYS come here?
}
}
}
My question is embedded in the code above.
class A {
String mStr;
A() {
if (mStr == null) {
// Does Java guarantee the execution will ALWAYS come here?
}
}
}
My question is embedded in the code above.