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