开发者

Eclipse plugin for measuring lines of code

开发者 https://www.devze.com 2023-03-27 01:36 出处:网络
I\'m running Eclipse Helios (3.6) and was wondering if there is a开发者_C百科 nice plugin out there that will count the number of logical lines of code in a java source file. By logical, I mean

I'm running Eclipse Helios (3.6) and was wondering if there is a开发者_C百科 nice plugin out there that will count the number of logical lines of code in a java source file. By logical, I mean

if (j > 6) {
   j--;
}

In other words, 2 logical lines of code (2 statements) will be counted instead of 3 physical lines of code.


Metrics2 is an updated version of the Metrics plug-in described by js3v that should do what you need. It can also aggregate some of the measurements (e.g. add up the LOC of classes in a package to give you the LOC of the package). This page explains some of its capabilities and mentions that it counts logical lines of code, not physical ones.


I have been using checkstyle-cs, a free Eclipse plug-in. Besides logical lines of code, it will also compute cyclomatic and N-path complexity (which may be a better indicator of code problems).

While I don't know if it will generate a report on every module, you might try setting the threshold very low, (like 2). Checkstyle should give you a yellow highlight at the start of every method, telling you how many lines of code it found.

Incidentally, there was some disagreement on our team as to whether

a[i++] = 7;

was one statement or two. There was no disagreement that

a[i] = 7;
i++; 

counted as two statements.


Here's one that I've used... works pretty well. http://sourceforge.net/projects/metrics/


ProjectCodeMeter can be integrated as eclipse external metrics tool, counts many source code metrics such as logical lines of code, complexity, arithmetic intricacy, strings, numeric constants, even estimates development time in hours.

Look at the "integrating into eclipse" section (about half way through the page)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号