Possible Duplicate:
What naming convention do you use for member variables?
Is there a coding-style convention regarding the name of a field vs. the name of that field's setter method's argument?
Example:
class MapLine{
private double elevation;
[...]
public void setElevation(double myElevation) {
elevation = myElevation;
// more code
}
[...]
My field is called elevation, a clear, sensible name. I want the argument of setElevation to have a sensible name, too; intuitively, I want that to be elevation, not least because that's what's going to be written in the documentation, so it has to be clear. But it can't be the same as the name of the field (elevation=elevation?!) so to disambiguate, I'm stuck giving it an ugly or confusing name, e.g. myElevation.
What's the usual convention? Give the field an ugly name instead of the argument? Or some other conventional way of disambiguiating the variable names? mapLineElevation?
This may seem like pedantry to some, but I like nice, clean code!
