如何检查BigDecimal变量== 0在java?

我有以下代码在Java;

BigDecimal price; // assigned elsewhere


if (price.compareTo(new BigDecimal("0.00")) == 0) {
return true;
}

写if条件的最好方法是什么?

338552 次浏览

使用compareTo(BigDecimal.ZERO)代替equals():

if (price.compareTo(BigDecimal.ZERO) == 0) // see below

BigDecimal常量相比,BigDecimal.ZERO避免了每次执行都必须构造new BigDecimal(0)

供你参考,为了方便起见,BigDecimal还有常量BigDecimal.ONEBigDecimal.TEN


注意!

不能使用BigDecimal#equals()的原因是它考虑了规模:

new BigDecimal("0").equals(BigDecimal.ZERO) // true
new BigDecimal("0.00").equals(BigDecimal.ZERO) // false!

所以不适合进行纯数字比较。然而,BigDecimal.compareTo()在比较时不考虑比例:

new BigDecimal("0").compareTo(BigDecimal.ZERO) == 0 // true
new BigDecimal("0.00").compareTo(BigDecimal.ZERO) == 0 // true

有一个常数,你可以检查:

someBigDecimal.compareTo(BigDecimal.ZERO) == 0

有一个静态常量代表0:

BigDecimal.ZERO.equals(selectPrice)

你应该这样做,而不是:

selectPrice.equals(BigDecimal.ZERO)

以避免selectPricenull的情况。

我通常使用以下方法:

if (selectPrice.compareTo(BigDecimal.ZERO) == 0) { ... }

你会想要使用equals(),因为它们是对象,并利用内置的ZERO实例:

if (selectPrice.equals(BigDecimal.ZERO))

注意,.equals()将比例考虑在内,所以除非selectPrice与.ZERO的比例(0)相同,否则返回false。

将比例从等式中剔除:

if (selectPrice.compareTo(BigDecimal.ZERO) == 0)

我应该指出,对于某些数学情况,0.00 != 0,这就是为什么我认为.equals()考虑了刻度。0.00给出百分位的精度,而0不是那么精确。根据具体情况,你可能想要坚持使用.equals()

另外,我认为值得一提的是类BigDecimal 彼此不一致中的equals和compareTo方法的行为。

这基本上意味着:

BigDecimal someValue = new BigDecimal("0.00");
System.out.println(someValue.compareTo(BigDecimal.ZERO) == 0); // true
System.out.println(someValue.equals(BigDecimal.ZERO)); // false

因此,你必须非常小心someValue变量中的比例,否则你会得到意想不到的结果。

或者,可以使用符号():

if (price.signum() == 0) {
return true;
}
BigDecimal.ZERO.setScale(2).equals(new BigDecimal("0.00"));

只是想在这里分享一些有用的kotlin扩展

fun BigDecimal.isZero() = compareTo(BigDecimal.ZERO) == 0
fun BigDecimal.isOne() = compareTo(BigDecimal.ONE) == 0
fun BigDecimal.isTen() = compareTo(BigDecimal.TEN) == 0

GriffeyDog绝对是正确的:

代码:

BigDecimal myBigDecimal = new BigDecimal("00000000.000000");
System.out.println("bestPriceBigDecimal=" + myBigDecimal);
System.out.println("BigDecimal.valueOf(0.000000)=" + BigDecimal.valueOf(0.000000));
System.out.println(" equals=" + myBigDecimal.equals(BigDecimal.ZERO));
System.out.println("compare=" + (0 == myBigDecimal.compareTo(BigDecimal.ZERO)));

结果:

myBigDecimal=0.000000
BigDecimal.valueOf(0.000000)=0.0
equals=false
compare=true
虽然我理解BigDecimal比较的优点,但我不认为它是一个直观的构造(像==,<, >, <=, >=操作符一样)。 当你脑子里有一百万件事(好吧,七件事)时,任何能减轻你认知负荷的事情都是好事。所以我构建了一些有用的方便函数:

public static boolean equalsZero(BigDecimal x) {
return (0 == x.compareTo(BigDecimal.ZERO));
}
public static boolean equals(BigDecimal x, BigDecimal y) {
return (0 == x.compareTo(y));
}
public static boolean lessThan(BigDecimal x, BigDecimal y) {
return (-1 == x.compareTo(y));
}
public static boolean lessThanOrEquals(BigDecimal x, BigDecimal y) {
return (x.compareTo(y) <= 0);
}
public static boolean greaterThan(BigDecimal x, BigDecimal y) {
return (1 == x.compareTo(y));
}
public static boolean greaterThanOrEquals(BigDecimal x, BigDecimal y) {
return (x.compareTo(y) >= 0);
}

下面是如何使用它们:

    System.out.println("Starting main Utils");
BigDecimal bigDecimal0 = new BigDecimal(00000.00);
BigDecimal bigDecimal2 = new BigDecimal(2);
BigDecimal bigDecimal4 = new BigDecimal(4);
BigDecimal bigDecimal20 = new BigDecimal(2.000);
System.out.println("Positive cases:");
System.out.println("bigDecimal0=" + bigDecimal0 + " == zero is " + Utils.equalsZero(bigDecimal0));
System.out.println("bigDecimal2=" + bigDecimal2 + " <  bigDecimal4=" + bigDecimal4 + " is " + Utils.lessThan(bigDecimal2, bigDecimal4));
System.out.println("bigDecimal2=" + bigDecimal2 + " == bigDecimal20=" + bigDecimal20 + " is " + Utils.equals(bigDecimal2, bigDecimal20));
System.out.println("bigDecimal2=" + bigDecimal2 + " <= bigDecimal20=" + bigDecimal20 + " is " + Utils.equals(bigDecimal2, bigDecimal20));
System.out.println("bigDecimal2=" + bigDecimal2 + " <= bigDecimal4=" + bigDecimal4 + " is " + Utils.lessThanOrEquals(bigDecimal2, bigDecimal4));
System.out.println("bigDecimal4=" + bigDecimal4 + " >  bigDecimal2=" + bigDecimal2 + " is " + Utils.greaterThan(bigDecimal4, bigDecimal2));
System.out.println("bigDecimal4=" + bigDecimal4 + " >= bigDecimal2=" + bigDecimal2 + " is " + Utils.greaterThanOrEquals(bigDecimal4, bigDecimal2));
System.out.println("bigDecimal2=" + bigDecimal2 + " >= bigDecimal20=" + bigDecimal20 + " is " + Utils.greaterThanOrEquals(bigDecimal2, bigDecimal20));
System.out.println("Negative cases:");
System.out.println("bigDecimal2=" + bigDecimal2 + " == zero is " + Utils.equalsZero(bigDecimal2));
System.out.println("bigDecimal2=" + bigDecimal2 + " == bigDecimal4=" + bigDecimal4 + " is " + Utils.equals(bigDecimal2, bigDecimal4));
System.out.println("bigDecimal4=" + bigDecimal4 + " <  bigDecimal2=" + bigDecimal2 + " is " + Utils.lessThan(bigDecimal4, bigDecimal2));
System.out.println("bigDecimal4=" + bigDecimal4 + " <= bigDecimal2=" + bigDecimal2 + " is " + Utils.lessThanOrEquals(bigDecimal4, bigDecimal2));
System.out.println("bigDecimal2=" + bigDecimal2 + " >  bigDecimal4=" + bigDecimal4 + " is " + Utils.greaterThan(bigDecimal2, bigDecimal4));
System.out.println("bigDecimal2=" + bigDecimal2 + " >= bigDecimal4=" + bigDecimal4 + " is " + Utils.greaterThanOrEquals(bigDecimal2, bigDecimal4));

结果如下所示:

Positive cases:
bigDecimal0=0 == zero is true
bigDecimal2=2 <  bigDecimal4=4 is true
bigDecimal2=2 == bigDecimal20=2 is true
bigDecimal2=2 <= bigDecimal20=2 is true
bigDecimal2=2 <= bigDecimal4=4 is true
bigDecimal4=4 >  bigDecimal2=2 is true
bigDecimal4=4 >= bigDecimal2=2 is true
bigDecimal2=2 >= bigDecimal20=2 is true
Negative cases:
bigDecimal2=2 == zero is false
bigDecimal2=2 == bigDecimal4=4 is false
bigDecimal4=4 <  bigDecimal2=2 is false
bigDecimal4=4 <= bigDecimal2=2 is false
bigDecimal2=2 >  bigDecimal4=4 is false
bigDecimal2=2 >= bigDecimal4=4 is false

对于你的例子,一个简单而更好的方法是:

BigDecimal price;


if(BigDecimal.ZERO.compareTo(price) == 0){
    

//Returns TRUE


}
if(price.floatValue() == 0){
return true; //works for 0\0.0
}