gpt4 book ai didi

java - 为什么 Lombok @Cleanup 使用 [Collections.singletonList().get(0)]?

转载 作者:行者123 更新时间:2023-11-30 05:23:22 31 4
gpt4 key购买 nike

我不明白为什么lombok使用singletonList,这里有一个演示:

@Cleanup FileInputStream fos = new FileInputStream("aa.txt");

构建后:

FileInputStream fos = new FileInputStream("aa.txt");
try {
fos.read();
} finally {
//I think [fos != null] should be better
if (Collections.singletonList(fos).get(0) != null) {
fos.close();
}
}

最佳答案

Lombok 项目开发人员在此。

我们正在研究 linter 工具,这些工具会警告无用的空检查。对于正常生成的方法,我们只需使用 @SuppressWarnings 标记该方法,以及您的 linter 工具可能需要意识到它不应该提示的任何其他注释,但这不能用 来完成@Cleanup

关于java - 为什么 Lombok @Cleanup 使用 [Collections.singletonList().get(0)]?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59149822/

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