El método arrayOffset() de la clase java.nio.LongBuffer 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 Long 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() .
Programa 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 LongBuffer int capacity = 10; // Creating the LongBuffer try { // creating object of Longbuffer // and allocating size capacity LongBuffer ib = LongBuffer.allocate(capacity); // putting the value in Longbuffer ib.put(8); ib.put(2, 9); // prLong the LongBuffer System.out.println("LongBuffer: " + Arrays.toString(ib.array())); // prLong the arrayOffset System.out.println("arrayOffset: " + ib.arrayOffset()); } catch (IllegalArgumentException e) { System.out.println("IllegalArgumentException catched"); } catch (ReadOnlyBufferException e) { System.out.println("Exception throws" + e); } } }
LongBuffer: [8, 0, 9, 0, 0, 0, 0, 0, 0, 0] arrayOffset: 0
Programa 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 LongBuffer int capacity = 10; // Creating the LongBuffer try { // creating object of Longbuffer // and allocating size capacity LongBuffer ib = LongBuffer.allocate(capacity); // putting the value in Longbuffer ib.put(8); ib.put(2, 9); ib.rewind(); // Creating a read-only copy of LongBuffer // using asReadOnlyBuffer() method LongBuffer ib1 = ib.asReadOnlyBuffer(); // prLong the LongBuffer System.out.print("Read only buffer : "); while (ib1.hasRemaining()) System.out.print(ib1.get() + ", "); // next line System.out.println(""); // prLong the arrayOffset System.out.println("\nTry to prLong the array offset" + " of read only buffer"); System.out.println("arrayOffset: " + ib1.arrayOffset()); } catch (IllegalArgumentException e) { System.out.println("Exception throws: " + e); } catch (ReadOnlyBufferException e) { System.out.println("Exception throws: " + e); } } }
Read only buffer : 8, 0, 9, 0, 0, 0, 0, 0, 0, 0, Try to prLong the array offset of read only buffer Exception throws: java.nio.ReadOnlyBufferException
Publicación traducida automáticamente
Artículo escrito por pawan_asipu y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA