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.
import java.util.*;
public class StackDemo {
public static void main(String args[])
{
Stack<String> stack = new Stack<String>();
stack.add( "Welcome" );
stack.add( "To" );
stack.add( "Geeks" );
stack.add( "4" );
stack.add( "Geeks" );
System.out.println( "Stack: " + stack);
System.out.println( "The hashCode value is: "
+ stack.hashCode());
}
}
|
Output:
Stack: [Welcome, To, Geeks, 4, Geeks]
The hashCode value is: -878886256
Program 2: Stack with integer elements.
import java.util.*;
public class StackDemo {
public static void main(String args[])
{
Stack<Integer> stack = new Stack<Integer>();
stack.add( 10 );
stack.add( 20 );
stack.add( 30 );
stack.add( 40 );
stack.add( 50 );
System.out.println( "Stack: " + stack);
System.out.println( "The hashCode value is: "
+ stack.hashCode());
}
}
|
Output:
Stack: [10, 20, 30, 40, 50]
The hashCode value is: 38490301
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
24 Dec, 2018
Like Article
Save Article