Comment Density
Ratio of number of comments to number of statements
Description
Note
Use Bug Finder instead of Code Prover for computing code metrics. Support for computing code metrics in Code Prover will be removed in a future release. See Version History.
This metric specifies the ratio of comments to statements expressed as a percentage.
Based on Hersteller Initiative Software (HIS) code complexity standard:
Polyspace® ignores these comments:
Comments that are included before the first statement. For instance, in this code, the first comment is ignored:
// This function implements a hashtble extern void hashdef();
Comments that start with the source code line. For instance, this comment does not count as a comment for the metric but counts as a statement instead:
remove(i); // Remove employee record
Comments that appear after the first line of a multiline comment. That is, multiline comments count as one comment. For instance, this is considered a single comment:
// This function implements // regular maintenance on an internal database
Polyspace calculates this metric after preprocessing the code. If your code contains macros, they are expanded before calculating the comment density.
Polyspace does not count these statements:
Structure field and class member declarations
Template declarations
Class member function definition within the class
A statement typically ends with a semicolon, but with some exceptions. Exceptions include semicolons in
for
loops or structure field declarations. For instance, the initialization, condition, and increment within parentheses in afor
loop is counted as one statement. This statement counts as a single statement:If you also declare the loop counter at initialization, that statement counts as two statements.for(i=0; i <100; i++)
Polyspace does not calculate this metric for the included header files.
The recommended lower limit for this metric is 20. For better readability of your code, place at least one comment for every five statements. The value of this metric is clamped to 100. Such a value indicates that your code might contain more comment than statements.
Examples
Metric Information
Group: File |
Acronym: COMF |
HIS Metric: Yes |