We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc20d8f commit 89d7ebeCopy full SHA for 89d7ebe
docs/java/basis/Java基础知识.md
@@ -1240,7 +1240,7 @@ public class Test {
1240
1241
#### 3.2.4. 使用 `try-with-resources` 来代替`try-catch-finally`
1242
1243
-1. **适用范围(资源的定义):** 任何实现 `java.lang.AutoCloseable`或者``java.io.Closeable` 的对象
+1. **适用范围(资源的定义):** 任何实现 `java.lang.AutoCloseable`或者 `java.io.Closeable` 的对象
1244
2. **关闭资源和 final 的执行顺序:** 在 `try-with-resources` 语句中,任何 catch 或 finally 块在声明的资源关闭后运行
1245
1246
《Effecitve Java》中明确指出:
0 commit comments