java.util.Hashtable.hashCode()方法實例
hashCode() 方法用於獲取該映射按照Map接口的定義的哈希碼值。
聲明
以下是java.util.Hashtable.hashCode()方法的聲明。
public int hashCode()
參數
-
NA
返回值
在方法調用返回此對象的哈希碼值。
異常
-
NA
例子
下麵的例子顯示java.util.Hashtable.hashCode()方法的使用
package com.yiibai; import java.util.*; public class HashTableDemo { public static void main(String args[]) { // create hash table Hashtable htable1 = new Hashtable(); // put values in table htable1.put(1, "A"); htable1.put(2, "B"); htable1.put(3, "C"); htable1.put(4, "D"); // get the hash code value System.out.println("Hash code value is :"+htable1.hashCode()); } }
現在編譯和運行上麵的代碼示例,將產生以下結果。
Hash code value is :256