我的变量是
private String category_code = null;
我的 getter 和 setter 生成为
public String getCategory_code() {
return category_code;
}
public void setCategory_code(String category_code) {
this.category_code = category_code;
}
是否可以生成
public String getCategorycode() {
return category_code;
}
public void setCategorycode(String categorycode) {
this.category_code = category_code;
}
我检查了属性--> 代码样式--> 字段,但这仅适用于前缀和后缀。
还是我应该将变量重命名为 m_categoryCode?并得到我的输出如下?
public String getCategoryCode() {
return m_categoryCode;
}
public void setCategoryCode(String categoryCode) {
m_categoryCode = categoryCode;
}
哪个更好?