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


Java ConcurrentLinkedDeque hashCode()用法及代碼示例


Java中ConcurrentLinkedDeque的hashCode()方法用於獲取ConcurrentLinkedDeque實例的hashCode值。它返回一個整數值,該值是此ConcurrentLinkedDeque實例的hashCode值。

用法:

public int hashCode()

參數:此函數沒有參數。


返回值:該方法返回一個整數值,該值是此ConcurrentLinkedDeque實例的hashCode值。

以下示例程序旨在說明ConcurrentLinkedDeque.hashCode()方法:

示例1:

// Java Program Demonstrate hashCode() 
// method of ConcurrentLinkedDeque 
  
import java.util.concurrent.ConcurrentLinkedDeque; 
import java.util.*; 
  
public class GFG { 
    public static void main(String[] args) 
        throws IllegalStateException 
    { 
  
        // create object of ConcurrentLinkedDeque 
        ConcurrentLinkedDeque<Integer> CLD 
            = new ConcurrentLinkedDeque<Integer>(); 
  
        // Add numbers to end of ConcurrentLinkedDeque 
        CLD.add(7855642); 
        CLD.add(35658786); 
        CLD.add(5278367); 
        CLD.add(74381793); 
  
        System.out.println("Linked Blocking Deque: " + CLD); 
  
        // Get the hashCode value 
        // using hashCode() value 
        System.out.println("HashCode value: "
                           + CLD.hashCode()); 
    } 
}
輸出:
Linked Blocking Deque: [7855642, 35658786, 5278367, 74381793]
HashCode value: 2101973421

示例2:

// Java Program Demonstrate hashCode() 
// method of ConcurrentLinkedDeque 
// when the list contains characters 
  
import java.util.concurrent.ConcurrentLinkedDeque; 
import java.util.*; 
  
public class GFG { 
    public static void main(String[] args) 
        throws IllegalStateException 
    { 
  
        // create object of ConcurrentLinkedDeque 
        ConcurrentLinkedDeque<String> CLD 
            = new ConcurrentLinkedDeque<String>(); 
  
        // Add numbers to end of ConcurrentLinkedDeque 
        CLD.add("1"); 
        CLD.add("2"); 
        CLD.add("3"); 
        CLD.add("4"); 
  
        System.out.println("Linked Blocking Deque: " + CLD); 
  
        // Get the hashCode value 
        // using hashCode() value 
        System.out.println("HashCode value: "
                           + CLD.hashCode()); 
    } 
}
輸出:
Linked Blocking Deque: [1, 2, 3, 4]
HashCode value: 2101973421


相關用法


注:本文由純淨天空篩選整理自Code_r大神的英文原創作品 ConcurrentLinkedDeque hashCode() method in Java with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。