A a = null;
try {
a = setA(); // set A throws exception
} catch (AException e) {
a = null;
}
在上面的代码中,如果发生异常,我是否需要a = null
在 catch 块中使用以确保为 null?a
A a = null;
try {
a = setA(); // set A throws exception
} catch (AException e) {
a = null;
}
在上面的代码中,如果发生异常,我是否需要a = null
在 catch 块中使用以确保为 null?a