El método rewind() de java.nio.IntBuffer Class se utiliza para rebobinar este búfer. La posición se pone a cero y la marca se descarta. Invoque este método antes de una secuencia de operaciones de obtención o escritura de canal, suponiendo que el límite ya se haya establecido correctamente. Invocar este método no cambia ni descarta el valor de la marca.
Sintaxis:
public final IntBuffer rewind()
Parámetro: El método no toma ningún parámetro.
Valor de retorno: este método devuelve este búfer.
A continuación se muestran los ejemplos para ilustrar el método rewind():
Ejemplos 1:
// Java program to demonstrate // rewind() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // defining and allocating IntBuffer // using allocate() method IntBuffer intBuffer = IntBuffer.allocate(4); // put char value in intBuffer // using put() method intBuffer.put(10); intBuffer.put(20); // print the int buffer System.out.println( "Buffer before operation: " + Arrays.toString( intBuffer.array()) + "\nPosition: " + intBuffer.position() + "\nLimit: " + intBuffer.limit()); // rewind the Buffer // using rewind() method intBuffer.rewind(); // print the intbuffer System.out.println( "\nBuffer after operation: " + Arrays.toString( intBuffer.array()) + "\nPosition: " + intBuffer.position() + "\nLimit: " + intBuffer.limit()); } }
Buffer before operation: [10, 20, 0, 0] Position: 2 Limit: 4 Buffer after operation: [10, 20, 0, 0] Position: 0 Limit: 4
Ejemplos 2:
// Java program to demonstrate // rewind() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // defining and allocating IntBuffer // using allocate() method IntBuffer intBuffer = IntBuffer.allocate(5); // put int value in IntBuffer // using put() method intBuffer.put(10); intBuffer.put(20); intBuffer.put(30); // mark will be going to // discarded by rewind() intBuffer.mark(); // print the buffer System.out.println( "Buffer before operation: " + Arrays.toString( intBuffer.array()) + "\nPosition: " + intBuffer.position() + "\nLimit: " + intBuffer.limit()); // Rewind the Buffer // using rewind() method intBuffer.rewind(); // print the buffer System.out.println( "\nBuffer after operation: " + Arrays.toString( intBuffer.array()) + "\nPosition: " + intBuffer.position() + "\nLimit: " + intBuffer.limit()); } }
Buffer before operation: [10, 20, 30, 0, 0] Position: 3 Limit: 5 Buffer after operation: [10, 20, 30, 0, 0] Position: 0 Limit: 5
Referencia: https://docs.oracle.com/javase/9/docs/api/java/nio/IntBuffer.html#rewind–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA