gpt4 book ai didi

当资源位于不可关闭包装器内时,Java try-with-resource

转载 作者:行者123 更新时间:2023-12-01 16:45:45 25 4
gpt4 key购买 nike

假设,我有一个返回 Result 类实例的方法:

public class Result {
pubilc InputStream content;
public long contentLength;
}

我想安全地使用这个InputStream,但显然,由于 Result 不实现 Closeable,我不能只写这样的东西:

try (Result result = getResult()) {
...
}

可能的解决方案之一是使结果可关闭:

public class Result implements Closeable {
public InputStream content;
public long contentLength;

@Override
public void close() throws IOException {
content.close();
}
}
...
// this should work now
try (Result result = getResult()) {
...
} catch (IOException) {
...
}

但是如果我无法(或不想)修改结果怎么办?

另一种方法是手动调用 close(),但它有点笨重:

Result result = null;
try {
result = getResult();
...
} catch (...) {
...
} finally {
if (result != null) {
result.content.close();
}
}

我也想过这样的事情:

Result result = getResult();
try (InputStream stream = result.content) {
...
}

但如果 getResult() 抛出异常,则会失败。

所以我的问题是:在这种情况下还有其他选择吗?

最佳答案

也许不太好,但很明显:

Result result = getResult();
try (InputStream content = result.content) {
...
}

可以变成

Result result;
try (InputStream content = (result = getResult()).content) {
...
}

关于当资源位于不可关闭包装器内时,Java try-with-resource,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51499270/

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