【知識積累】比較兩個double型別的大小和integer

changhenshui1990發表於2017-03-14
一:double

1.等於

goodsWeight.compareTo(aviableNum) == 0

2.大於

goodsWeight.compareTo(aviableNum) > 0

3.小於

goodsWeight.compareTo(aviableNum) < 0

二;integer

Integer inAreaType=10;

inAreaType.intValue() == Constant.STOREAREA_INTEMPORARY



三:判斷物件是空的

rowObj.isEmpty()

相關文章