日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > java >内容正文

java

深入理解Java原始数据类型和包装类关于==和equals的比较

發布時間:2025/3/20 java 17 豆豆
生活随笔 收集整理的這篇文章主要介紹了 深入理解Java原始数据类型和包装类关于==和equals的比较 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

1.運算符 ==

對于六大Java數值類原始數據類型,==比較的是數值

對于六大Java原始數據類型對應的包裝類,==比較的是內存地址

2.equals()

equals()方法只有對象才有,所以我們討論一下原始數值類型的包裝在的equals()方法吧!

對于六大Java原始數據類型對應的包裝類,equals都是比較值。

有源碼為證如下所示:

Byte類

Short類

Integer類

Long類

Double類

/*** Compares this object against the specified object. The result* is {@code true} if and only if the argument is not* {@code null} and is a {@code Double} object that* represents a {@code double} that has the same value as the* {@code double} represented by this object. For this* purpose, two {@code double} values are considered to be* the same if and only if the method {@link* #doubleToLongBits(double)} returns the identical* {@code long} value when applied to each.** <p>Note that in most cases, for two instances of class* {@code Double}, {@code d1} and {@code d2}, the* value of {@code d1.equals(d2)} is {@code true} if and* only if** <blockquote>* {@code d1.doubleValue() == d2.doubleValue()}* </blockquote>** <p>also has the value {@code true}. However, there are two* exceptions:* <ul>* <li>If {@code d1} and {@code d2} both represent* {@code Double.NaN}, then the {@code equals} method* returns {@code true}, even though* {@code Double.NaN==Double.NaN} has the value* {@code false}.* <li>If {@code d1} represents {@code +0.0} while* {@code d2} represents {@code -0.0}, or vice versa,* the {@code equal} test has the value {@code false},* even though {@code +0.0==-0.0} has the value {@code true}.* </ul>* This definition allows hash tables to operate properly.* @param obj the object to compare with.* @return {@code true} if the objects are the same;* {@code false} otherwise.* @see java.lang.Double#doubleToLongBits(double)*/public boolean equals(Object obj) {return (obj instanceof Double)&& (doubleToLongBits(((Double)obj).value) ==doubleToLongBits(value));}

Float類

/*** Compares this object against the specified object. The result* is {@code true} if and only if the argument is not* {@code null} and is a {@code Float} object that* represents a {@code float} with the same value as the* {@code float} represented by this object. For this* purpose, two {@code float} values are considered to be the* same if and only if the method {@link #floatToIntBits(float)}* returns the identical {@code int} value when applied to* each.** <p>Note that in most cases, for two instances of class* {@code Float}, {@code f1} and {@code f2}, the value* of {@code f1.equals(f2)} is {@code true} if and only if** <blockquote><pre>* f1.floatValue() == f2.floatValue()* </pre></blockquote>** <p>also has the value {@code true}. However, there are two exceptions:* <ul>* <li>If {@code f1} and {@code f2} both represent* {@code Float.NaN}, then the {@code equals} method returns* {@code true}, even though {@code Float.NaN==Float.NaN}* has the value {@code false}.* <li>If {@code f1} represents {@code +0.0f} while* {@code f2} represents {@code -0.0f}, or vice* versa, the {@code equal} test has the value* {@code false}, even though {@code 0.0f==-0.0f}* has the value {@code true}.* </ul>** This definition allows hash tables to operate properly.** @param obj the object to be compared* @return {@code true} if the objects are the same;* {@code false} otherwise.* @see java.lang.Float#floatToIntBits(float)*/public boolean equals(Object obj) {return (obj instanceof Float)&& (floatToIntBits(((Float)obj).value) == floatToIntBits(value));}

總結

以上是生活随笔為你收集整理的深入理解Java原始数据类型和包装类关于==和equals的比较的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。