Método byte hashCode() en Java con ejemplos

El método hashCode() de la clase Byte es un método integrado en Java que se utiliza para devolver el código hash de ByteObject.

Nota: hashCode() devuelve el mismo valor que intValue().

Sintaxis

ByteObject.hashCode()

Valor de retorno: Devuelve un valor int que representa el código hash del objeto Byte especificado.

A continuación se muestra la implementación del método hashCode() en Java:

Ejemplo 1:

// Java code to demonstrate
// Byte hashCode() method
  
class GFG {
    public static void main(String[] args)
    {
  
        String value = "74";
  
        // wrapping the byte value
        // in the wrapper class Byte
        Byte b = new Byte(value);
  
        // hashCode of the Byte 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
// Byte hashCode() method
  
class GFG {
    public static void main(String[] args)
    {
  
        String value = "-17";
  
        // wrapping the byte value
        // in the wrapper class Byte
        Byte b = new Byte(value);
  
        // hashCode of the Byte 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 ShivamKD 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 *