本文介紹了為什么Java&;的Double.Compare(Double,Double)是這樣實(shí)現(xiàn)的?的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!
問(wèn)題描述
我正在研究Java標(biāo)準(zhǔn)庫(kù)(6)中compare(double, double)的實(shí)現(xiàn)。上面寫著:
public static int compare(double d1, double d2) {
if (d1 < d2)
return -1; // Neither val is NaN, thisVal is smaller
if (d1 > d2)
return 1; // Neither val is NaN, thisVal is larger
long thisBits = Double.doubleToLongBits(d1);
long anotherBits = Double.doubleToLongBits(d2);
return (thisBits == anotherBits ? 0 : // Values are equal
(thisBits < anotherBits ? -1 : // (-0.0, 0.0) or (!NaN, NaN)
1)); // (0.0, -0.0) or (NaN, !NaN)
}
此實(shí)現(xiàn)的優(yōu)點(diǎn)是什么?
編輯:”優(yōu)點(diǎn)”是一個(gè)(非常)糟糕的措辭。我想知道這是如何工作的。
推薦答案
@Shoover的答案是正確的(read it!),但還有更多的原因。
作為Double::equals
的javadoc狀態(tài):
此定義允許哈希表正常運(yùn)行。
假設(shè)Java設(shè)計(jì)者已經(jīng)決定使用與包裝的double
實(shí)例上的==
相同的語(yǔ)義來(lái)實(shí)現(xiàn)equals(...)
和compare(...)
。這意味著對(duì)于包裝的NaN,equals()
總是返回false
。現(xiàn)在考慮如果您嘗試在地圖或集合中使用包裝的NaN會(huì)發(fā)生什么情況。
List<Double> l = new ArrayList<Double>();
l.add(Double.NaN);
if (l.contains(Double.NaN)) {
// this wont be executed.
}
Map<Object,String> m = new HashMap<Object,String>();
m.put(Double.NaN, "Hi mum");
if (m.get(Double.NaN) != null) {
// this wont be executed.
}
沒(méi)什么意義,不是嗎!
將存在其他異常,因?yàn)?code>-0.0和+0.0
具有不同的位模式,但根據(jù)==
相同。
因此,Java設(shè)計(jì)人員決定(正確地使用IMO)為我們今天擁有的這些雙重方法選擇更復(fù)雜(但更直觀)的定義。
這篇關(guān)于為什么Java&;的Double.Compare(Double,Double)是這樣實(shí)現(xiàn)的?的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,