首页 > 代码库 > 纠错本
纠错本
关于Service中的赋值计算,利用三目运算符
注意:判断是"==",赋值是"="
private Stipend getCountTotalize(Stipend e) { float count=0; count=count+(e.getBasic()==null?0:e.getBasic().longValue());// count=count+e.getBasic().longValue(); count=count+(e.getDuty()==null?0:e.getDuty().longValue());// count=count+e.getDuty().longValue(); count=count+(e.getEat()==null?0:e.getEat().longValue());// count=count+e.getEat().longValue(); count=count+(e.getHouse()==null?0:e.getHouse().longValue());// count=count+e.getHouse().longValue(); count=count+(e.getOther()==null?0:e.getOther().longValue()); count=count-(e.getPunishment()==null?0:e.getPunishment().longValue()); count=count-(e.getScot()==null?0:e.getScot().longValue()); System.out.println("============================"); System.out.println(count); e.setTotalize(new Float(count)); return e; }
纠错本
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。