java.util.IdentityHashMap.hashCode()方法实例
hashCode() 方法用于获取此映射的哈希码值。
声明
以下是java.util.IdentityHashMap.hashCode()方法的声明。
public int hashCode()
参数
-
NA
返回值
方法调用返回此映射的哈希码值。
异常
-
NA
例子
下面的例子显示java.util.IdentityHashMap.hashCode()方法的使用
package com.yiibai; import java.util.*; public class IdentityHashMapDemo { public static void main(String args[]) { // create identity hash map IdentityHashMap ihmap = new IdentityHashMap(); // populate the map ihmap.put(1, "java"); ihmap.put(2, "util"); ihmap.put(3, "package"); System.out.println("Hash code value is: " + ihmap.hashCode()); } }
现在编译和运行上面的代码示例,将产生以下结果。
Hash code value is: 12336129