Método hashCode() corto en Java con ejemplos

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

Publicación traducida automáticamente

Artículo escrito por Sruti Rai y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *