Thursday, December 11, 2025
HomeLanguagesJavaLongBuffer allocate() method in Java

LongBuffer allocate() method in Java

The allocate() method of java.nio.LongBuffer Class is used to allocate a new Long buffer next to the existing buffer. The new buffer’s position will be zero. Its limit will be its capacity. Its mark will be undefined. And each of its elements will be initialized to zero. It will have a backing array, and its array offset will be zero.
Syntax: 
 

public static LongBuffer allocate(Long capacity)

Parameter: This method takes the new buffer’s capacity, in Long, as a parameter.
Return Value: This method returns the new Long buffer.
Exception: This method throws the IllegalArgumentException if the capacity is a negative Longer.
Below programs illustrate the allocate() method:
Program 1:
 

Java




// 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 LongBuffer
        int Capacity = 10;
 
        // Creating the LongBuffer
 
        // creating object of Longbuffer
        // and allocating size capacity
        LongBuffer ib = LongBuffer.allocate(Capacity);
 
        // putting the value in Longbuffer
        ib.put(11);
        ib.put(2, 19);
 
        System.out.println("LongBuffer: "
                           + Arrays.toString(ib.array()));
    }
}


Output: 

LongBuffer: [11, 0, 19, 0, 0, 0, 0, 0, 0, 0]

 

Program 2: To demonstrate IllegalArgumentException
 

Java




// 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 LongBuffer
        // by negative Longer
        int Capacity = -10;
 
        // Creating the LongBuffer
        try {
 
            // creating object of Longbuffer
            // and allocating size with negative Longer
            System.out.println("Trying to allocate a Negative Longer");
 
            LongBuffer ib = LongBuffer.allocate(Capacity);
        }
        catch (IllegalArgumentException e) {
            System.out.println("Exception thrown: " + e);
        }
    }
}


Output

Trying to allocate a Negative Longer
Exception thrown: java.lang.IllegalArgumentException: capacity < 0: (-10 < 0)
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32440 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6811 POSTS0 COMMENTS
Nicole Veronica
11950 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12023 POSTS0 COMMENTS
Shaida Kate Naidoo
6943 POSTS0 COMMENTS
Ted Musemwa
7193 POSTS0 COMMENTS
Thapelo Manthata
6889 POSTS0 COMMENTS
Umr Jansen
6880 POSTS0 COMMENTS