El método hasArray() de la clase java.nio.CharBuffer se usa para garantizar si el búfer dado está respaldado por una array de caracteres accesible o no. Devuelve verdadero si hay una array de respaldo accesible para este búfer; de lo contrario, devuelve falso. Si este método devuelve verdadero, entonces los métodos array() y arrayOffset() pueden invocarse con seguridad, ya que funcionan en la array de respaldo.
Sintaxis:
public final boolean hasArray()
Valor devuelto: 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 CharBuffer int capacity = 10; // Creating the CharBuffer try { // creating object of Intbuffer // and allocating size capacity CharBuffer cb = CharBuffer.allocate(capacity); // putting the value in Intbuffer cb.put('a'); cb.put(2, 'b'); cb.rewind(); // checking CharBuffer cb is backed by array or not boolean isArray = cb.hasArray(); // checking if else condition if (isArray) System.out.println("CharBuffer cb is" + " backed by array"); else System.out.println("CharBuffer cb is" + " not backed by any array"); } catch (IllegalArgumentException e) { System.out.println("IllegalArgumentException catched"); } catch (ReadOnlyBufferException e) { System.out.println("ReadOnlyBufferException catched"); } } }
CharBuffer cb 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 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'); cb.rewind(); // Creating a read-only copy of CharBuffer // using asReadOnlyBuffer() method CharBuffer cb1 = cb.asReadOnlyBuffer(); // checking CharBuffer cb is backed by array or not boolean isArray = cb1.hasArray(); // checking if else condition if (isArray) System.out.println("CharBuffer cb is" + " backed by array"); else System.out.println("CharBuffer cb is" + " not backed by any array"); } catch (IllegalArgumentException e) { System.out.println("IllegalArgumentException catched"); } catch (ReadOnlyBufferException e) { System.out.println("ReadOnlyBufferException catched"); } } }
CharBuffer cb is not backed by any array