El método hashCode() de la clase java.nio.ByteBuffer se utiliza para devolver el código hash actual de este búfer.
El código hash de un búfer de bytes depende únicamente de sus elementos restantes; es decir, sobre los elementos desde position() hasta, e incluyendo, el elemento en limit() – 1.
Debido a que los códigos hash de búfer dependen del contenido, no es recomendable usar búferes como claves en mapas hash o estructuras de datos similares a menos que se sabe que su contenido no cambiará.
Sintaxis:
public int hashCode()
Valor devuelto: este método devuelve el código hash actual de este búfer.
A continuación se muestran los ejemplos para ilustrar el método hashCode():
Ejemplos 1:
// Java program to demonstrate // getInt() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // creating object of ByteBuffer // and allocating size capacity ByteBuffer bb = ByteBuffer.allocate(12); // putting the int value in the bytebuffer bb.asIntBuffer() .put(10) .put(20) .put(30); // rewind the Bytebuffer bb.rewind(); // print the ByteBuffer System.out.println("Original ByteBuffer: "); for (int i = 1; i <= 3; i++) System.out.print(bb.getInt() + " "); // rewind the Bytebuffer bb.rewind(); // Reads the Int at this buffer's current position // using getInt() method int value = bb.hashCode(); // print the int value System.out.println("\n\nByte Value: " + value); } }
Original ByteBuffer: 10 20 30 Byte Value: -219122491
Ejemplos 2:
// Java program to demonstrate // getInt() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // creating object of ByteBuffer // and allocating size capacity ByteBuffer bb = ByteBuffer.allocate(12); // Reads the Int at this buffer's current position // using getInt() method int value = bb.hashCode(); // print the int value System.out.println("Byte Value: " + value); } }
Byte Value: -293403007
Referencia: https://docs.oracle.com/javase/9/docs/api/java/nio/ByteBuffer.html#hashCode–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA