Buffer arrayOffset() método en Java con ejemplos

El método arrayOffset() de la clase java.nio.Buffer se usa 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 abstract 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);
  
            // Typecasting ByteBuffer into Buffer
            Buffer buffer = (Buffer)bb;
  
            // offset within this buffer's array
            // of the first element of the buffer
            // using arrayOffset() method
            int offset = buffer.arrayOffset();
  
            // print the array
            System.out.println("arrayOffset is : "
                               + offset);
        }
  
        catch (ReadOnlyBufferException e) {
  
            System.out.println("buffer is backed by an "
                               + "array but is read-only");
            System.out.println("Exception throws: " + e);
        }
    }
}
Producción:

arrayOffset is : 0

Ejemplo 2: Para 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 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);
  
            // Creating a read-only copy of  ByteBuffer
            // using asReadOnlyBuffer() method
            ByteBuffer bb1 = bb.asReadOnlyBuffer();
  
            // Typecasting read-only ByteBuffer
            // into read-only Buffer
            Buffer buffer = (Buffer)bb1;
  
            // offset within this buffer's array
            // of the first element of the buffer
            // using arrayOffset() method
            int offset = buffer.arrayOffset();
  
            // print the array
            System.out.println("arrayOffset is : "
                               + offset);
        }
  
        catch (ReadOnlyBufferException e) {
  
            System.out.println("buffer is backed by "
                               + "an array but is read-only");
            System.out.println("Exception throws: " + e);
        }
    }
}
Producción:

buffer is backed by an array but is read-only
Exception throws: java.nio.ReadOnlyBufferException

Referencia: https://docs.oracle.com/javase/9/docs/api/java/nio/Buffer.html#arrayOffset–

Publicación traducida automáticamente

Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *