奇怪的“资源泄漏:流永远不会关闭”,如果在循环中抛出异常,则使用资源试用
2022-09-03 06:38:17
为什么 Eclipse 会为以下代码发出奇怪的“资源泄漏:zin 从未关闭”警告,即使我使用:try-with-resources
Path file = Paths.get("file.zip");
// Resource leak warning!
try (ZipInputStream zin = new ZipInputStream(Files.newInputStream(file))) {
for (int i = 0; i < 5; i++)
if (Math.random() < 0.5)
throw new Exception();
} catch (Exception e) {
e.printStackTrace();
}
如果我修改代码上的“任何内容”,警告就会消失。下面我列出了3个修改后的版本,这些版本都可以(没有警告)。
模组 #1:如果我从块中删除循环,警告就会消失:for
try
// This is OK (no warning)
try (ZipInputStream zin = new ZipInputStream(Files.newInputStream(file))) {
if (Math.random() < 0.5)
throw new Exception();
} catch (Exception e) {
e.printStackTrace();
}
模组 #2:如果我保留循环,也没有警告,但我删除了包装:for
ZipInputStream
// This is OK (no warning)
try (InputStream in = Files.newInputStream(file))) {
for (int i = 0; i < 5; i++)
if (Math.random() < 0.5)
throw new Exception();
} catch (Exception e) {
e.printStackTrace();
}
模组 #3:如果我在外面创建,也没有警告:InputStream
try-with-resources
// This is also OK (no warning)
InputStream in = Files.newInputStream(file); // I declare to throw IOException
try (ZipInputStream zin = new ZipInputStream(in)) {
for (int i = 0; i < 5; i++)
if (Math.random() < 0.5)
throw new Exception();
} catch (Exception e) {
e.printStackTrace();
}
我使用Eclipse Kepler(4.3.1),但与Kepler SR2(4.3.2)的结果相同。