Poor Style: Confusing Naming
From OWASP
This page was marked to be reviewed for deletion.
#REDIRECT Failure to follow guideline/specification
Last revision (mm/dd/yy): 4/7/2009
Contents |
Description
The class contains a field and a method with the same name.
It is confusing to have a member field and a method with the same name. It makes it easy for a programmer to accidentally call the method when attempting to access the field or vice versa.
Risk Factors
TBD
Examples
public class Totaller {
private int total;
public int total() {
...
}
}
Related Attacks
Related Vulnerabilities
Related Controls
Related Technical Impacts
References
TBD

