我期待來計算,如果在Java中的變量的值等於它目前被定義爲一個大小數0.00。驗證值正好等於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);
請記住,我已經做了google搜索,試圖找到一個簡單的方法來比較這的相當多。如何比較tempListPrice
的值以查看它是否等於0.00
,前面定義爲big decimal datatype
。
我如何做到這一點? (對不起,我對Java很陌生)。
感謝
你的.getAmount()方法返回什麼? –
你期望'0.00'與'0.0'不同嗎? –