El método arrayOffset() de la clase java.nio.ByteBuffer se utiliza para devolver el desplazamiento dentro de la array de respaldo del búfer dado del primer elemento del búfer.
Si este búfer está respaldado por una array, entonces la posición del búfer p corresponde al índice de array p + arrayOffset().
Invoque el método hasArray antes de invocar este método para asegurarse de 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 la excepción ReadOnlyBufferException, si este búfer está respaldado por una array pero es de solo lectura.
A continuación se muestran los ejemplos para ilustrar 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 ByteBuffer int capacity = 4; // Creating the ByteBuffer try { // creating object of ByteBuffer // and allocating size capacity ByteBuffer bb = ByteBuffer.allocate(capacity); // putting the int to byte typecast value in ByteBuffer bb.put((byte)20); bb.put((byte)30); bb.put((byte)40); bb.put((byte)50); bb.rewind(); // print the ByteBuffer System.out.println("ByteBuffer: " + Arrays.toString(bb.array())); // print the arrayOffset System.out.println("arrayOffset: " + bb.arrayOffset()); } catch (IllegalArgumentException e) { System.out.println("IllegalArgumentException catched"); } catch (ReadOnlyBufferException e) { System.out.println("Exception throws" + e); } } }
ByteBuffer: [20, 30, 40, 50] arrayOffset: 0
Ejemplo 2:
// 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 ByteBuffer int capacity = 3; // Creating the ByteBuffer try { // creating object of ByteBuffer // and allocating size capacity ByteBuffer bb = ByteBuffer.allocate(capacity); // putting the value in ByteBuffer bb.put((byte)20); bb.put((byte)30); bb.put((byte)40); bb.rewind(); // Creating a read-only copy of ByteBuffer // using asReadOnlyBuffer() method ByteBuffer bb1 = bb.asReadOnlyBuffer(); // print the ByteBuffer System.out.print("Read only buffer : "); while (bb1.hasRemaining()) System.out.print(bb1.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: " + bb1.arrayOffset()); } catch (IllegalArgumentException e) { System.out.println("Exception throws: " + e); } catch (ReadOnlyBufferException e) { System.out.println("Exception throws: " + e); } } }
Read only buffer : 20, 30, 40, Try to print the array offset of read only buffer Exception throws: java.nio.ReadOnlyBufferException
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA