日食 + JAVA:检查哪些数据成员可以成为最终的
Eclipse 中有没有办法获取未声明为最终但可以声明为最终的类数据成员的列表?
Is there a way in Eclipse to get a list of class data members that are not declared as final but can be declared as such?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有一个可配置的“清理”功能,可以为您完成所有工作
There is a configurable "clean up" function, that will do all the work for you
为此,您可以使用 Eclipse 的 checkstyle 插件。
http://eclipse-cs.sourceforge.net/screen_shots.html
You could use the checkstyle plugin for Eclipse for this.
http://eclipse-cs.sourceforge.net/screen_shots.html
您可以使用 Findbugs eclipse 插件,它会给您一份包含代码中所有明显问题的报告。它还包括可以标记为最终的变量列表。
如果您愿意,可以修改 findbugs 以将其显示为报告的一部分。
Findbugs 站点
Findbugs Eclipse 插件
You can use the Findbugs eclipse plugin which will give you a report with all the obvious issues in your code. It also includes a list of variables which can be marked as final.
If you want you can modify findbugs to just display this as part of your report.
Findbugs site
Findbugs eclipse plugin