java.util.Arrays.hashCode(short[])方法範例


java.util.Arrays.hashCode(short[]) 方法返回基於指定陣列的內容的雜湊碼。對於任何兩個short陣列a和b,使得Arrays.equals(a,b),正如Arrays.hashCode(a)== Arrays.hashCode(b)。

宣告

以下是java.util.Arrays.hashCode()方法的宣告

public static int hashCode(short[] a)

引數

  • a -- 這是用於計算雜湊值的陣列。

返回值

此方法返回一個基於內容的雜湊碼。

異常

  • NA

例子

下面的範例演示java.util.Arrays.hashCode()方法的用法。

package com.yiibai;

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