Intellij检查详细阵列初始化
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,有:
Java |代码样式问题|常数数组创建中的冗余“新”表达
Yes, there is:
Java | Code style issues | Redundant 'new' expression in constant array creation