El método Java.util.Stack.hashCode() en Java se usa para obtener el valor del código hash de esta pila.
Sintaxis:
Stack.hashCode()
Parámetros: El método no toma ningún parámetro.
Valor de retorno: el método devuelve el valor del código hash de esta pila que es de tipo entero.
Los siguientes programas ilustran el método Java.util.Stack.hashCode():
Programa 1: Pila con elementos de string.
// 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()); } }
Producción:
Stack: [Welcome, To, Geeks, 4, Geeks] The hashCode value is: -878886256
Programa 2: Pila con elementos enteros.
// 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()); } }
Producción:
Stack: [10, 20, 30, 40, 50] The hashCode value is: 38490301