gpt4 book ai didi

java - 错误的资源泄漏警告?

转载 作者:搜寻专家 更新时间:2023-11-01 03:54:07 27 4
gpt4 key购买 nike

我在这段代码中收到关于“s”和“p”的资源泄漏警告。这个警告有效吗?

try (StringWriter s = new StringWriter(); PrintWriter p = new PrintWriter(s)) {
p.print(InetAddress.getLocalHost().getHostName());
p.print('/');
Enumeration<NetworkInterface> e = NetworkInterface.getNetworkInterfaces();
while (e.hasMoreElements()) {
NetworkInterface i = e.nextElement();
System.out.println(i);
if (i.getHardwareAddress() == null || i.getHardwareAddress().length == 0)
continue;
for (byte b : i.getHardwareAddress())
p.printf("%02x", b);
return s.toString();
}
throw new RuntimeException("Unable to determine Host ID");
}

最佳答案

在这个片段中 - 没有。除了由 JVM 管理的资源外,没有其他资源可言。

关于java - 错误的资源泄漏警告?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13968184/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com