El método hashCode() de la clase Short es un método incorporado en Java que se utiliza para devolver el código hash del ShortObject.
Nota: hashCode() devuelve el mismo valor que intValue().
Sintaxis
ShortObject.hashCode()
Valor de retorno: devuelve un valor int que representa el código hash del objeto corto especificado.
A continuación se muestra la implementación del método hashCode() en Java:
Ejemplo 1:
// Java code to demonstrate // Short hashCode() method class GFG { public static void main(String[] args) { String value = "74"; // wrapping the short value // in the wrapper class Short Short b = new Short(value); // hashCode of the Short Object int output = b.hashCode(); // printing the output System.out.println("HashCode of " + b + " : " + output); } }
Producción:
HashCode of 74 : 74
Ejemplo 2:
// Java code to demonstrate // Short hashCode() method class GFG { public static void main(String[] args) { String value = "-17"; // wrapping the short value // in the wrapper class Short Short b = new Short(value); // hashCode of the Short Object int output = b.hashCode(); // printing the output System.out.println("HashCode of " + b + " : " + output); } }
Producción:
HashCode of -17 : -17