當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.util.Arrays.hashCode(Object[])用法及代碼示例



描述

這個java.util.Arrays.hashCode(Object[])方法根據指定數組的內容返回一個哈希碼。如果數組包含其他數組作為元素,則哈希碼基於它們的身份而不是它們的內容。對於任何兩個數組 a 和 b 使得 Arrays.equals(a, b),Arrays.hashCode( a) == Arrays.hashCode(b)。

聲明

以下是聲明java.util.Arrays.hashCode()方法

public static int hashCode(Object[] a)

參數

a─ 這是要計算散列值的數組。

返回值

此方法返回 a 的基於內容的哈希碼。

異常

NA

示例

下麵的例子展示了 java.util.Arrays.hashCode() 方法的用法。

package com.tutorialspoint;

import java.util.Arrays;

public class ArrayDemo {
   public static void main(String[] args) {

      // initializing Object array
      Object[] ob = new Object[] { 22, 7 };

      // hashcode for value1
      int retval = ob.hashCode();
      
      // printing hash code value
      System.out.println("The hash code of value1 is:" + retval);
      
      // value2 for Object array
      ob = new Object[] { 3.5, 8.5 };

      // hashcode for value2
      retval = ob.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

相關用法


注:本文由純淨天空篩選整理自 Java.util.Arrays.hashCode(Object[]) Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。