Intellij检查详细阵列初始化

发布于 2025-01-17 22:49:08 字数 235 浏览 0 评论 0原文

IntelliJ 中是否有一项检查可以检测我何时编写

final String[] args = new String[]{​"a", "b"}​;

而不是更短(且同样有效)的内容,

final String[] args = {​​​"a", "b"}​​​;

我找不到一个,并且当我使用更详细的形式时,我希望得到一个弱警告。

Is there an inspection in IntelliJ which will detect when I have written

final String[] args = new String[]{​"a", "b"}​;

instead of the shorter (and equally valid)

final String[] args = {​​​"a", "b"}​​​;

I can't find one and I would like a weak warning when I use the more verbose form.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

久而酒知 2025-01-24 22:49:08

是的,有:
Java |代码样式问题|常数数组创建中的冗余“新”表达

Yes, there is:
Java | Code style issues | Redundant 'new' expression in constant array creation

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文