El método hashCode() de la clase java.lang.Class se utiliza para obtener la representación hashCode de esta entidad. Este método devuelve un valor entero que es el código hash.
Sintaxis:
public int hashCode()
Parámetro: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve un valor entero que es el código hash.
Los siguientes programas muestran el método hashCode().
Ejemplo 1:
// Java program to demonstrate hashCode() method public class Test { public static void main(String[] args) throws ClassNotFoundException { // returns the Class object for the class // with the specified name Class c1 = Class.forName("java.lang.String"); System.out.println("Class represented by c1: " + c1); // hashCode method on c1 System.out.println("HashCode value: " + c1.hashCode()); } }
Producción:
Class represented by c1: class java.lang.String HashCode value: 589431969
Ejemplo 2:
// Java program to demonstrate hashCode() method public class Test { public static void main(String[] args) throws ClassNotFoundException { // returns the Class object for the class // with the specified name Class c1 = int.class; System.out.println("Class represented by c1: " + c1); // hashCode method on c1 System.out.println("HashCode value: " + c1.hashCode()); } }
Producción:
Class represented by c1: int HashCode value: 589431969
Referencia: https://docs.oracle.com/javase/9/docs/api/java/lang/Class.html#hashCode–