Métodos de buffer hasArray() en Java con ejemplos

El método hasArray() de la clase java.nio.Buffer se usa para saber si este búfer está respaldado o no por una array accesible. Si este método devuelve verdadero, entonces los métodos array y arrayOffset() pueden invocarse con seguridad.

Sintaxis:

public abstract boolean hasArray()

Devoluciones: este método devolverá verdadero si, y solo si, este búfer está respaldado por una array y no es de solo lectura. De lo contrario, devuelve falso .

A continuación se muestran los ejemplos para ilustrar el método hasArray() :

Ejemplos 1: cuando el búfer está respaldado por una array

// Java program to demonstrate
// hasArray() method
  
import java.nio.*;
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Declaring the capacity of the ByteBuffer
        int capacity = 10;
  
        // 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)10);
            bb.put((byte)20);
            bb.rewind();
  
            // Typecast bytebuffer to Buffer
            Buffer buffer = (Buffer)bb;
  
            // checking buffer is backed by array or not
            boolean isArray = buffer.hasArray();
  
            // checking if else condition
            if (isArray)
                System.out.println("buffer is"
                                   + " backed by array");
            else
                System.out.println("buffer is"
                                   + " not backed by any array");
        }
  
        catch (IllegalArgumentException e) {
            System.out.println("IllegalArgumentException catched");
        }
  
        catch (ReadOnlyBufferException e) {
            System.out.println("ReadOnlyBufferException catched");
        }
    }
}
Producción:

buffer is backed by array

Ejemplos 2: cuando el búfer no está respaldado por una array

// Java program to demonstrate
// hasArray() method
  
import java.nio.*;
import java.util.*;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Declaring the capacity of the ByteBuffer
        int capacity = 10;
  
        // 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)8.56F);
            bb.put((byte)10);
            bb.rewind();
  
            // Creating a read-only copy of ByteBuffer
            // using asReadOnlyBuffer() method
            ByteBuffer bb1 = bb.asReadOnlyBuffer();
  
            // Typecast read-only ByteBuffer to read-only buffer
            Buffer buffer = (Buffer)bb1;
  
            // checking Buffer buffer is backed by array or not
            boolean isArray = buffer.hasArray();
  
            // checking if else condition
            if (isArray)
                System.out.println("buffer is"
                                   + " backed by array");
            else
                System.out.println("buffer is"
                                   + " not backed by any array");
        }
  
        catch (IllegalArgumentException e) {
            System.out.println("IllegalArgumentException catched");
        }
  
        catch (ReadOnlyBufferException e) {
            System.out.println("ReadOnlyBufferException catched");
        }
    }
}
Producción:

buffer is not backed by any array

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

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 *