Update translation (#25780)
This commit is contained in:
@ -10,13 +10,13 @@ localeTitle: 最后
|
|||||||
|
|
||||||
```java
|
```java
|
||||||
try {
|
try {
|
||||||
// Normal execution path
|
// 正常代码执行
|
||||||
throw new EmptyStackException();
|
throw new EmptyStackException();
|
||||||
} catch (ExampleException ee) {
|
} catch (ExampleException ee) {
|
||||||
// deal with the ExampleException
|
// 对 ExampleException 进行处理
|
||||||
} finally {
|
} finally {
|
||||||
// This optional section is executed upon termination of any of the try or catch blocks above,
|
// 这块不是必须有的,在以上try或catch执行完最后就会执行,
|
||||||
// except when System.exit() is called in "try" or "catch" blocks;
|
// 除非在"try" 或 "catch" 块有 System.exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
```
|
```
|
||||||
|
Reference in New Issue
Block a user