El método flip() de java.nio.IntBuffer Class se usa para voltear este búfer. Al voltear este búfer, significa que el búfer se recortará a la posición actual y luego la posición se cambiará a cero. Durante este proceso, si hay alguna marca en el búfer, esa marca se descartará automáticamente.
Sintaxis:
public final IntBuffer flip()
Parámetro: El método no toma ningún parámetro.
Valor de retorno: este método devuelve la instancia de IntBuffer invertida.
A continuación se muestran los ejemplos para ilustrar el método flip():
Ejemplos 1:
// Java program to demonstrate // flip() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // Declare and initialize // the int array int[] ib = { 10, 20, 30 }; // wrap the int array // into IntBuffer // using wrap() method IntBuffer intBuffer = IntBuffer.wrap(ib); // set position at index 1 intBuffer.position(1); // print the buffer System.out.println( "Buffer before flip: " + Arrays.toString( intBuffer.array()) + "\nPosition: " + intBuffer.position() + "\nLimit: " + intBuffer.limit()); // Flip the Buffer // using flip() method intBuffer.flip(); // print the buffer System.out.println( "\nBuffer after flip: " + Arrays.toString( intBuffer.array()) + "\nPosition: " + intBuffer.position() + "\nLimit: " + intBuffer.limit()); } }
Buffer before flip: [10, 20, 30] Position: 1 Limit: 3 Buffer after flip: [10, 20, 30] Position: 0 Limit: 1
Ejemplos 2:
// Java program to demonstrate // flip() 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 int value in IntBuffer // using put() method intBuffer.put(20); intBuffer.put(34); // set position at index 1 intBuffer.position(1); // print the buffer System.out.println( "Buffer before flip: " + Arrays.toString( intBuffer.array()) + "\nPosition: " + intBuffer.position() + "\nLimit: " + intBuffer.limit()); // Flip the Buffer // using flip() method intBuffer.flip(); // print the buffer System.out.println( "\nBuffer after flip: " + Arrays.toString( intBuffer.array()) + "\nPosition: " + intBuffer.position() + "\nLimit: " + intBuffer.limit()); } }
Buffer before flip: [20, 34, 0, 0] Position: 1 Limit: 4 Buffer after flip: [20, 34, 0, 0] Position: 0 Limit: 1
Referencia: https://docs.oracle.com/javase/9/docs/api/java/nio/IntBuffer.html#flip–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA