El método arrayOffset() de la clase java.nio.CharBuffer se utiliza para devolver el desplazamiento dentro de la array de respaldo del búfer del primer elemento del búfer. Significa que si este búfer está respaldado por una array, entonces la posición del búfer p corresponde al índice de array p + arrayOffset().
Para verificar si este búfer tiene una array de respaldo, se puede usar el método hasArray() . Garantiza que este búfer tenga una array de respaldo accesible.
Sintaxis:
public final int arrayOffset()
Valor devuelto: este método devuelve el desplazamiento dentro de la array de este búfer del primer elemento del búfer.
Excepción: este método lanza ReadOnlyBufferException si este búfer está respaldado por una array pero es de solo lectura
El siguiente programa ilustra el método arrayOffset() .
Ejemplo 1:
// Java program to demonstrate // arrayOffset() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // Declaring the capacity of the CharBuffer int capacity = 10; // Creating the CharBuffer try { // creating object of CharBuffer // and allocating size capacity CharBuffer cb = CharBuffer.allocate(capacity); // putting the value in CharBuffer cb.put('a'); cb.put(2, 'b'); // print the CharBuffer System.out.println("CharBuffer: " + Arrays.toString(cb.array())); // print the arrayOffset System.out.println("arrayOffset: " + cb.arrayOffset()); } catch (IllegalArgumentException e) { System.out.println("IllegalArgumentException catched"); } catch (ReadOnlyBufferException e) { System.out.println("Exception throws" + e); } } }
CharBuffer: [a, , b, , , , , , , ] arrayOffset: 0
Ejemplo 2: Para demostrar ReadOnlyBufferException
// Java program to demonstrate // arrayOffset() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // Declaring the capacity of the CharBuffer int capacity = 10; // Creating the CharBuffer try { // creating object of CharBuffer // and allocating size capacity CharBuffer fb = CharBuffer.allocate(capacity); // putting the value in CharBuffer fb.put('a'); fb.put(2, 'b'); fb.rewind(); // Creating a read-only copy of CharBuffer // using asReadOnlyBuffer() method CharBuffer cb1 = fb.asReadOnlyBuffer(); // print the CharBuffer System.out.print("Read only buffer : "); while (cb1.hasRemaining()) System.out.print(cb1.get() + ", "); // next line System.out.println(""); // print the arrayOffset System.out.println("\nTry to print the array offset" + " of read only buffer"); System.out.println("arrayOffset: " + cb1.arrayOffset()); } catch (IllegalArgumentException e) { System.out.println("Exception throws: " + e); } catch (ReadOnlyBufferException e) { System.out.println("Exception throws: " + e); } } }
Read only buffer : a, , b, , , , , , , , Try to print the array offset of read only buffer Exception throws: java.nio.ReadOnlyBufferException