public class Tester {
private double length;
private double width;
private double height;
public Tester(double ________1, double _________2, double _________3){
length = _________1
width = _________2
height = _________3
}//Tester constructor
}//Tester class
Above is a simple sample code and I was wondering if there is a "good" naming convention for naming variables when making classes?
For example what would be good names for _____1, _____2, _____3?
Would it be something like testerLength, testerWidth, testerHeight?