gpt4 book ai didi

java - 为什么在 try with resources 子句中实例化时出现错误?

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:06:21 25 4
gpt4 key购买 nike

这是给出错误的代码 -

try(StringWriter stringWriter = new StringWriter()) {

IDE 正在提示 Unhandled exception from auto-closeable resource:java.io.IOException 是否有必要在此处的构造函数中传递一些内容?

最佳答案

因为 close 方法(在 StringWriter 中)声明为:

public void close() throws IOException

你的 try-with-resources 会自动调用它。

关于java - 为什么在 try with resources 子句中实例化时出现错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45440099/

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