Java中替换对象属性值易出现错误

在项目中,需要对某个对象的某个值进行判断,并替换成别的值,一开始代码如下所示

if(tranIO.getDevice().equals("W")){
        tranIO.setDevice("终端窗口");
}else if(tranIO.getDevice().equals("P")){
	tranIO.setDevice("打印机");
}else if(tranIO.getDevice().equals("M")){
	tranIO.setDevice("磁条读写器");
}else if(tranIO.getDevice()==null){
        tranIO.setDevice("");
}

 这里会造成一个 不容易发现的 
错误就是 

当传进来的tranIO对象的device值为null时,系统会报错

原因在于,如果先按照这样的顺序执行

tranIO.getDevice().equals("W")
这段代码执行顺序就变成了

tranIO.getDevice()
然后再执行.equals("W")

 其实就是相当于执行 

null.equals("W")
这样当然会报错了


所以,修改成以下的方式就能够成功

if(tranIO.getDevice()==null){
	tranIO.setDevice("");
}else if(tranIO.getDevice().equals("W")){
	tranIO.setDevice("终端窗口");
}else if(tranIO.getDevice().equals("P")){
	tranIO.setDevice("打印机");
}else if(tranIO.getDevice().equals("M")){
	tranIO.setDevice("磁条读写器");
}

先执行判断null,如果为null,赋值,并结束下面判断,即可

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值