试捕区的位置是否影响到性能?
页: 1 中间
while (true) {
try {
// ... read from a file
} catch (EOFException e) {
break;
}
}
EXAMPLE2:审判渔获区 中间
try {
while (true) {
// ... read from a file
}
} catch (EOFException e) {
// :P
}
从逻辑上讲,这两个例子都是一样的,但我是否喜欢?