在我的班级中更改我的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;
}