重複の可能性:
Java では、最終的に切り札を返しますか?
この関数は何を返しますか?
public int wasExceptionThrown() {
try {
if(1==1)
throw new RuntimeException();
return 1;
} catch(Exception e) {
return 2;
} finally {
return 3;
}
return 0;
}
重複の可能性:
Java では、最終的に切り札を返しますか?
この関数は何を返しますか?
public int wasExceptionThrown() {
try {
if(1==1)
throw new RuntimeException();
return 1;
} catch(Exception e) {
return 2;
} finally {
return 3;
}
return 0;
}