为什么在Java的try-with-resource中需要声明

为什么在Java的try-with-resource中需要声明,第1张

为什么在Java的try-with-resource中需要声明

您的版本未明确定义应关闭的内容,例如

CloseableResource thing;Parameter a;try (a = (thing = methodThatCreatesAThingAndDoesSomeSideEffect()).getParameter()) {

还要写的话怎么办

try (12) {

或者其他的东西?

CloseableResource thing1 = methodThatCreatesAThingAndDoesSomeSideEffect();CloseableResource thing2 = methodThatCreatesAThingAndDoesSomeSideEffect();try(thing1) {}

为什么只关闭

thing1

因此,当前语法迫使您在打开关闭块的同时创建变量

ALSO2

CloseableResource Thing1 = methodThatCreatesAThingAndDoesSomeSideEffect();

try(thing1) {}thing1.doSomethingonClosedResource();

由于

thing1
仍然存在。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5499579.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存