3

重複の可能性:
オブジェクトのハッシュコードとは何
ですか?hashCode()とidentityHashCode()はバックエンドでどのように機能しますか?

Stringクラスやハッシュコードがオーバーライドされる他のクラスについては話していません。Objectクラスの新しいオブジェクトを作成しただけの場合、hashcode()またははどのような場合でもtrueになるのでidentityHashCode(Object x)、そのオブジェクトのメモリアドレスを返しますか?

4

4 に答える 4

7

必ずしも。ドキュメントから(私の強調):

合理的に実用的である限り、クラスObjectによって定義されたhashCodeメソッドは、個別のオブジェクトに対して個別の整数を返します。(これは通常、オブジェクトの内部アドレスを整数に変換することによって実装されますが、この実装手法はJavaTMプログラミング言語では必要ありません。)

于 2012-06-06T15:55:47.107 に答える
1

JDKに付属しているソースを確認することでいつでも確認できます。

ネイティブメソッドとしての私のjava.lang.Objectショー。hashCodeこれがjavadocsです。

/**
 * Returns a hash code value for the object. This method is 
 * supported for the benefit of hashtables such as those provided by 
 * <code>java.util.Hashtable</code>. 
 * <p>
 * The general contract of <code>hashCode</code> is: 
 * <ul>
 * <li>Whenever it is invoked on the same object more than once during 
 *     an execution of a Java application, the <tt>hashCode</tt> method 
 *     must consistently return the same integer, provided no information 
 *     used in <tt>equals</tt> comparisons on the object is modified.
 *     This integer need not remain consistent from one execution of an
 *     application to another execution of the same application. 
 * <li>If two objects are equal according to the <tt>equals(Object)</tt>
 *     method, then calling the <code>hashCode</code> method on each of 
 *     the two objects must produce the same integer result. 
 * <li>It is <em>not</em> required that if two objects are unequal 
 *     according to the {@link java.lang.Object#equals(java.lang.Object)} 
 *     method, then calling the <tt>hashCode</tt> method on each of the 
 *     two objects must produce distinct integer results.  However, the 
 *     programmer should be aware that producing distinct integer results 
 *     for unequal objects may improve the performance of hashtables.
 * </ul>
 * <p>
 * As much as is reasonably practical, the hashCode method defined by 
 * class <tt>Object</tt> does return distinct integers for distinct 
 * objects. (This is typically implemented by converting the internal 
 * address of the object into an integer, but this implementation 
 * technique is not required by the 
 * Java<font size="-2"><sup>TM</sup></font> programming language.)
 *
 * @return  a hash code value for this object.
 * @see     java.lang.Object#equals(java.lang.Object)
 * @see     java.util.Hashtable
 */
public native int hashCode();
于 2012-06-06T15:57:54.243 に答える
1

いいえ、HashCode()関数は整数を返します。オブジェクトにHashCode()関数を定義していない場合、Javaはオブジェクトのメモリアドレスを整数にトランスコードしてそれを返すことができます(MAY)。

于 2012-06-06T16:02:57.413 に答える
0

Object.hashCode()のドキュメントにあるように、

合理的に実用的である限り、クラスObjectによって定義されたhashCodeメソッドは、個別のオブジェクトに対して個別の整数を返します。(これは通常、オブジェクトの内部アドレスを整数に変換することによって実装されますが、この実装手法はJavaTMプログラミング言語では必要ありません。)

したがって、Java言語では、Objectクラスのハッシュコードがオブジェクトのメモリアドレスを返す必要がないため、これに依存しないでください。

于 2012-06-06T15:59:49.100 に答える