Friday, June 12, 2026
HomeLanguagesJavaLinkedBlockingDeque hashCode() method in Java with Example

LinkedBlockingDeque hashCode() method in Java with Example

The hashCode() method of LinkedBlockingDeque in Java is used to get the hashCode value for this instance of the LinkedBlockingDeque. It returns an integer value which is the hashCode value for this instance of the LinkedBlockingDeque.

Syntax:

public int hashCode()

Parameters: This function has no parameters.

Returns: The method returns an integer value which is the hashCode value for this instance of the LinkedBlockingDeque.

Below examples illustrates the LinkedBlockingDeque.hashCode() method:

Program 1:




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


Output:

Linked Blocking Deque: [7855642, 35658786, 5278367, 74381793]
HashCode value: 2101973421

Program 2:




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


Output:

Linked Blocking Deque: [1, 2, 3, 4]
HashCode value: 2101973421
RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS