在 Eclipse 中计算条件语句
我想计算 if、else if、for、case 等条件语句的出现次数。使用普通的 eclipse 搜索可能会给出包含注释中的“if”的结果。有没有插件可以完成这项工作?
I want to count the occurrence of conditional statements like if, else if, for, case. Using normal eclipse search may give results which includes "if" from a comments. Is there any plugin to do this job ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最接近的一个是指标插件或这个。但代码行数或条件语句的数量通常是非常糟糕的指标。
您应该查看许多静态代码分析器中的一些,它们将帮助您获得更好的质量并提供一些实际有价值的信息。请参阅此问题
The closest one is the metrics plugin or this one. But lines of code or number of conditional statements are usually pretty bad indicators.
You should look at some of the many static code analyzers that will help you get better quality and give some actual valuable information. See this question