我想知道有人会如何命名以首字母而不是单词开头的成员字段。
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;
}
我知道我可以只使用private String recloseVoltsScale
,但我宁愿保留它 RVScale。如果有人知道它是否应该是rVScale
或RVScale
其他东西,我会很感激这些信息。
编辑 :
另外,像这样的成员字段呢...
private int RV;