java.lang.System.identityHashCode()方法實例
java.lang.System.identityHashCode() 方法返回給定對象的哈希代碼會被默認使用方法hashCode()。空引用的哈希碼返回是零。
聲明
以下是java.lang.System.identityHashCode()方法的聲明
public static int identityHashCode(Object x)
參數
-
x -- 這對於哈希碼是待計算的對象。
返回值
此方法返回hashCode。
異常
-
NA
例子
下麵的例子顯示java.lang.System.identityHashCode()方法的使用。
package com.yiibai; import java.lang.*; import java.io.*; public class SystemDemo { public static void main(String[] args) throws Exception { File file1 = new File("amit"); File file2 = new File("amit"); File file3 = new File("ansh"); // returns the HashCode int ret1 = System.identityHashCode(file1); System.out.println(ret1); // returns different HashCode for same filename int ret2 = System.identityHashCode(file2); System.out.println(ret2); // returns the HashCode int ret3 = System.identityHashCode(file3); System.out.println(ret3); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
355165777 1414159026 1569228633