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


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



描述

這個java.util.Arrays.hashCode(short[])方法根據指定數組的內容返回一個哈希碼。對於任何兩個短數組 a 和 b 使得 Arrays.equals(a, b),Arrays.hashCode(a) == Arrays.hashCode(b) 也是這種情況。

聲明

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

public static int hashCode(short[] 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 short array
      short[] sval = new short[] { 2 };

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

      // hashcode for value2
      retval = sval.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(short[]) Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。