在IntelliJ IDEA中,如何用资源试用来包围?

2022-09-03 06:13:49

在IntelliJ IDEA中,我可以按“环绕”快捷方式,用尝试/捕获块包围代码块,等等。CTRL-ALT-T

我想将资源部分括入一个资源试用块中:

Writer out = Files.newBufferedWriter(destination, StandardCharsets.UTF_8);
temp.process(model, out);

对此:

try (Writer out = Files.newBufferedWriter(destination, StandardCharsets.UTF_8)) {
    temp.process(model, out);
}

但是,按 时,此选项不可用。CTRL-ALT-T

如何用资源试用块包围代码块?


答案 1

按表示 .ALT-ENTERAutoCloseable

"“使用资源尝试块包围”是一种意图操作。它不是“环绕声”菜单中可用的选项。

try with resources screenshot


答案 2

在语句末尾添加。.twr

enter image description here

enter image description here


推荐