我正在计算 java 中变量的值是否等于 0.00 ,当前定义为大十进制。
I have tried a variety of ways to do this including:
tempListPrice.getAmount() == 0.00;
tempListPrice.getAmount().equals(0.00);
public static final zeroed = 0.00
tempListPrice.getAmount().equals(zeroed);
请记住,我已经做了很多谷歌搜索,试图找到一种简单的方法来比较这个。如何比较 的值tempListPrice
以查看它是否等于0.00
,这在前面定义为 a big decimal datatype
。
我该怎么做呢?(对不起,我对 Java 很陌生)。
谢谢