在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
如何用资源试用块包围代码块?