BigDecimal|BigDecimal 判断相等

【BigDecimal|BigDecimal 判断相等】BigDecimal hundred = new BigDecimal("100");
BigDecimal zero = new BigDecimal("0");
BigDecimal totalRate = new BigDecimal("0");
不能使用==和equals:
if(zero.compareTo(totalRate)==0){
return true;
}else{
return false;
}

    推荐阅读