El método hasArray() de la clase java.nio.IntBuffer se usa para garantizar si el búfer dado está respaldado por una array int 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 IntBuffer int capacity = 10; // Creating the IntBuffer try { // creating object of Intbuffer // and allocating size capacity IntBuffer ib = IntBuffer.allocate(capacity); // putting the value in Intbuffer ib.put(4); ib.put(2, 9); ib.rewind(); // checking IntBuffer ib is backed by array or not boolean isArray = ib.hasArray(); // checking if else condition if (isArray) System.out.println("IntBuffer ib is" + " backed by array"); else System.out.println("IntBuffer ib is" + " not backed by any array"); } catch (IllegalArgumentException e) { System.out.println("IllegalArgumentException catched"); } catch (ReadOnlyBufferException e) { System.out.println("ReadOnlyBufferException catched"); } } }
IntBuffer ib 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 IntBuffer int capacity = 10; // Creating the IntBuffer try { // creating object of Intbuffer // and allocating size capacity IntBuffer ib = IntBuffer.allocate(capacity); // putting the value in Intbuffer ib.put(8); ib.put(2, 9); ib.rewind(); // Creating a read-only copy of IntBuffer // using asReadOnlyBuffer() method IntBuffer ib1 = ib.asReadOnlyBuffer(); // checking IntBuffer ib is backed by array or not boolean isArray = ib1.hasArray(); // checking if else condition if (isArray) System.out.println("IntBuffer ib is" + " backed by array"); else System.out.println("IntBuffer ib is" + " not backed by any array"); } catch (IllegalArgumentException e) { System.out.println("IllegalArgumentException catched"); } catch (ReadOnlyBufferException e) { System.out.println("ReadOnlyBufferException catched"); } } }
IntBuffer ib is not backed by any array
Publicación traducida automáticamente
Artículo escrito por nitin_sharma y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA