在我的课堂上更改我的 getter 方法(如第 2 版)是不好的做法。
版本 1:
public String getMyValue(){
return this.myValue
}
版本 2:
public String getMyValue(){
if(this.myValue == null || this.myValue.isEmpty()){
this.myValue = "N/A";
}
return this.myValue;
}