用于查找代码中可能存在问题的工具
是否有任何工具可以查找并报告 java 代码中可能存在的问题(死锁/空指针/等)?也许是 Eclipse 插件?
Is there any tools, that find and report possible problems (deadlocks/null pointers/etc) in a java code? Maybe an Eclipse plugin?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,这里有一些流行的、免费的、开源的 Java 静态代码检查工具:
Yes, here are some popular, free and open source static code checking tools for Java:
我使用 http://findbugs.sourceforge.net/ 并且效果很好。当然,它不会发现所有问题,但诸如潜在的空指针、潜在的同步问题等都涵盖在内。它是一个 Eclipse 插件,与“标记”视图(显示问题的视图)集成
i use http://findbugs.sourceforge.net/ and it works very well. of course it won't find all problems but stuff like potential null pointers, potential synchronization issues etc are all covered. it comes as an eclipse plugin that integrates with the 'markers' view (the one that shows you problems)
您也可以查看这些:
You could look on these too: