Stack hashCode() method in Java with Example
The Java.util.Stack.hashCode() method in Java is used to get the hashcode value of this Stack.
Syntax:
Stack.hashCode()
Parameters: The method does not take any parameter.
Return Value: The method returns hash code value of this Stack which is of Integer type.
Below programs illustrate the Java.util.Stack.hashCode() method:
Program 1: Stack with string elements.
// Java code to illustrate hashCode() import java.util.*; public class StackDemo { public static void main(String args[]) { // Creating an empty Stack Stack<String> stack = new Stack<String>(); // Use add() method to add elements into the Stack stack.add("Welcome"); stack.add("To"); stack.add("Geeks"); stack.add("4"); stack.add("Geeks"); // Displaying the Stack System.out.println("Stack: " + stack); // Displaying the hashCode value of Stack System.out.println("The hashCode value is: " + stack.hashCode()); } } |
chevron_right
filter_none
Output:
Stack: [Welcome, To, Geeks, 4, Geeks] The hashCode value is: -878886256
Program 2: Stack with integer elements.
// Java code to illustrate hashCode() import java.util.*; public class StackDemo { public static void main(String args[]) { // Creating an empty Stack Stack<Integer> stack = new Stack<Integer>(); // Use add() method to add elements into the Stack stack.add(10); stack.add(20); stack.add(30); stack.add(40); stack.add(50); // Displaying the Stack System.out.println("Stack: " + stack); // Displaying the hashCode value of Stack System.out.println("The hashCode value is: " + stack.hashCode()); } } |
chevron_right
filter_none
Output:
Stack: [10, 20, 30, 40, 50] The hashCode value is: 38490301
Recommended Posts:
- ConcurrentLinkedDeque hashCode() method in Java with Example
- CopyOnWriteArrayList hashCode() method in Java
- AbstractSequentialList hashCode() method in Java with Example
- BigInteger hashCode() Method in Java
- Importance of Hashcode method in Java
- Writer hashCode() method in Java with Example
- BigDecimal hashCode() Method in Java
- YearMonth hashCode() method in Java
- IdentityHashMap hashCode() Method in Java
- GregorianCalendar hashCode() Method in Java
- TreeSet hashCode() method in Java with Example
- LinkedBlockingDeque hashCode() method in Java with Example
- Vector hashCode() Method in Java
- Set hashCode() method in Java with Examples
- HashSet hashCode() method in Java with Example
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



