El método allocate() de la clase java.nio.ByteBuffer se utiliza para asignar un nuevo búfer de bytes.
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 ByteBuffer allocate(int capacity)
Parámetros: Este método toma capacidad, en bytes como parámetro.
Valor devuelto: este método devuelve el nuevo búfer de bytes.
Lanza: Este método lanza IllegalArgumentException , si la capacidad es un entero negativo
A continuación se muestran los ejemplos para ilustrar 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 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 using putInt() method bb.put((byte)20); bb.put((byte)30); bb.put((byte)40); bb.put((byte)50); bb.rewind(); // print the ByteBuffer System.out.println("Original ByteBuffer: " + Arrays.toString(bb.array())); } catch (IllegalArgumentException e) { System.out.println("IllegalArgumentException catched"); } catch (ReadOnlyBufferException e) { System.out.println("ReadOnlyBufferException catched"); } } }
Original ByteBuffer: [20, 30, 40, 50]
Ejemplos 2:
// Java program to demonstrate // allocate() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // Declaring the capacity with negative // value of the ByteBuffer int capacity = -4; // Creating the ByteBuffer try { // creating object of ByteBuffer // and allocating size capacity System.out.println("Trying to allocate negative"+ " value in ByteBuffer"); ByteBuffer bb = ByteBuffer.allocate(capacity); // putting int to byte typecast value // in ByteBuffer using putInt() method bb.put((byte)20); bb.put((byte)30); bb.put((byte)40); bb.put((byte)50); bb.rewind(); // print the ByteBuffer System.out.println("Original ByteBuffer: " + Arrays.toString(bb.array())); } catch (IllegalArgumentException e) { System.out.println("Exception thrown : " + e); } catch (ReadOnlyBufferException e) { System.out.println("Exception thrown : " + e); } } }
Trying to allocate negative value in ByteBuffer Exception thrown : java.lang.IllegalArgumentException
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA