为什么最后使用
2022-08-31 22:43:41
我从来没有正确地理解最后陈述的用法。谁能告诉我两者之间有什么区别:
try {
a;
block;
off;
statements;
} catch (Exception e) {
handle;
exception;
e;
} finally {
do;
some;
cleanup;
}
一方面,还有:
try {
a;
block;
off;
statements;
} catch (Exception e) {
handle;
exception;
e;
}
do;
some;
cleanup;
在另一方面