下面代码中finally代码段会被执行吗?
try {
if (choice) {
while (true)
} else {
system .exit(1):
}
}finally {
codetocleanup();
}
发布时间: 2012-09-07 10:38:15 作者: rapoo
下面代码中finally代码段会被执行吗?
try {
if (choice) {
while (true)
} else {
system .exit(1):
}
}finally {
codetocleanup();
}