java.util.Arrays.hashCode(long[])方法實例
java.util.Arrays.hashCode(long[]) 方法返回基於指定數組的內容的哈希碼。對於任何兩個long數組a和b,使得Arrays.equals(a,b),它也是如下列表達式Arrays.hashCode(a)== Arrays.hashCode(b)所示。
聲明
以下是java.util.Arrays.hashCode()方法的聲明
public static int hashCode(long[] a)
參數
-
a -- 這是用於計算哈希值的數組。
返回值
此方法返回一個基於內容的哈希碼。
異常
- NA
例子
下麵的示例演示java.util.Arrays.hashCode()方法的用法。
package com.yiibai; import java.util.Arrays; public class ArrayDemo { public static void main(String[] args) { // initializing long array long[] lval = new long[] { 87, 77 }; // hashcode for value1 int retval = lval.hashCode(); // printing hash code value System.out.println("The hash code of value1 is: " + retval); // value2 for double array lval=new long[] { 139, 85 }; // hashcode for value2 retval=lval.hashCode(); // printing hash code value System.out.println("The hash code of value2 is: " + retval); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
The hash code of value1 is: 4072869 The hash code of value2 is: 1671711