VOOZH about

URL: https://www.geeksforgeeks.org/java/concurrentlinkeddeque-hashcode-method-in-java-with-example/

⇱ ConcurrentLinkedDeque hashCode() method in Java with Example - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

ConcurrentLinkedDeque hashCode() method in Java with Example

Last Updated : 27 Dec, 2018
The hashCode() method of ConcurrentLinkedDeque in Java is used to get the hashCode value for this instance of the ConcurrentLinkedDeque. It returns an integer value which is the hashCode value for this instance of the ConcurrentLinkedDeque. Syntax:
public int hashCode()
Parameters: This function has no parameters. Return Value: The method returns an integer value which is the hashCode value for this instance of the ConcurrentLinkedDeque. Below programs illustrate the ConcurrentLinkedDeque.hashCode() method: Program 1:
Output:
Linked Blocking Deque: [7855642, 35658786, 5278367, 74381793]
HashCode value: 2101973421
Program 2:
Output:
Linked Blocking Deque: [1, 2, 3, 4]
HashCode value: 2101973421
Comment