void function_ab(){
if ( a == true){
final Class_A obj = new Class_A("a"); //This is an example scenario, so I couldn't create a setter to pass in "a" instead of passing it into Contructor.
}else{
final Class_A obj = new Class_A("B");
}
// the code below will access obj object in Inner class.
}
我需要在声明之后访问 obj,但由于它们是在“if”块中声明的,所以之后我将无法访问它。我也不能这样做:
void function_ab(){
final Class_A obj = null;
if ( a == true){
obj = new Class_A("a"); //final variable cannot be changed.
}else{
obj = new Class_A("B");
}
// the code below will access obj object in Inner class.
}
上面的代码无效。那么让它工作的唯一方法是将 obj 变量声明为类变量吗?我尽量避免这样声明,因为它只在那个函数中使用。
请告诉我是否有更好的方法来解决这个问题。