`
happyqing
  • 浏览: 3151751 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

eclipse生成boolean类型getter,setter,is开头的问题

阅读更多

 

private boolean isDel;

public boolean isDel() {
	return isDel;
}
public void setDel(boolean isDel) {
	this.isDel = isDel;
}

 

使用引用类型Boolean就好了,

private Boolean isDel;

public Boolean getIsDel() {
	return isDel;
}
public void setIsDel(Boolean isDel) {
	this.isDel = isDel;
}

  

eclipse 配置lombok,注解生成getter,setter,equals,hashCode,toString
http://happyqing.iteye.com/blog/2410576

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics