I was wondering how someone would name the member field that began with initials as opposed to words.
public class MyClass {
// I know this is how it is for a member field with words.
private String myString;
// What about this String? It is representing the term "RV Scale" which is
// short for "Reclose Volts Scale."
private String RVScale;
}
I know that I could just use private String recloseVoltsScale
, but I'd rather keep it RVScale. If anyone knows if its supposed to be rVScale
or RVScale
or something else I'd appreciate the info.
EDIT :
Also, what about a member field like this...
private int RV;
rvScale
. – NonesRVScale
looks like a class. – MusRVS
, wheres
stands for string. – Cuneiform