美文网首页
BigDecimal 判断相等

BigDecimal 判断相等

作者: AZZCS_0222 | 来源:发表于2019-10-18 17:51 被阅读0次

    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;
    }

    相关文章

      网友评论

          本文标题:BigDecimal 判断相等

          本文链接:https://www.haomeiwen.com/subject/jrujuctx.html