単語ではなくイニシャルで始まるメンバー フィールドに、誰かがどのように名前を付けるのだろうと思っていました。
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;