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


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



描述

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

聲明

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

public static int hashCode(boolean[] 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 boolean array
      boolean[] bval = new boolean[] { true };

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

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