El método allocate() de java.nio.IntBuffer Class se usa para asignar un nuevo búfer int al lado del búfer existente. La posición del nuevo búfer será cero. Su límite será su capacidad. Su marca será indefinida. Y cada uno de sus elementos se inicializará a cero. Tendrá una array de respaldo y su compensación de array será cero.
Sintaxis:
public static IntBuffer allocate(int capacity)
Parámetro: este método toma la capacidad del nuevo búfer , en int, como parámetro.
Valor devuelto : este método devuelve el nuevo búfer int .
Excepción: este método lanza IllegalArgumentException si la capacidad es un entero negativo.
El siguiente programa ilustra el método allocate():
Ejemplos 1:
// Java program to demonstrate // allocate() 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 // creating object of intbuffer // and allocating size capacity IntBuffer ib = IntBuffer.allocate(Capacity); // putting the value in intbuffer ib.put(11); ib.put(2, 19); System.out.println("IntBuffer: " + Arrays.toString(ib.array())); } }
IntBuffer: [11, 0, 19, 0, 0, 0, 0, 0, 0, 0]
Ejemplos 2: Para demostrar IllegalArgumentException
// Java program to demonstrate // allocate() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // Declaring the capacity of the IntBuffer // by negative integer int Capacity = -10; // Creating the IntBuffer try { // creating object of intbuffer // and allocating size with negative integer System.out.println("Trying to allocate a Negative Integer"); IntBuffer ib = IntBuffer.allocate(Capacity); } catch (IllegalArgumentException e) { System.out.println("Exception thrown: " + e); } } }
Trying to allocate a Negative Integer Exception thrown: java.lang.IllegalArgumentException
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