In this tutorial, you will see how to allocate a new long buffer in java.
In this tutorial, you will see how to allocate a new long buffer in java.In this tutorial, we will see how to allocate a new long buffer.
LongBuffer API:
The java.nio.LongBuffer class extends java.nio.Buffer class. It provides the following methods:
Return type | Method | Description |
static LongBuffer | allocate( int capacity) | The allocate() method allocate a long buffer of given capacity. |
Buffer API:
The java.nio.Buffer class extends java.lang.Object class. It provides the following methods:
Return type | Method | Description |
int | limit() | The limit() method returns the limit of int buffer. |
int | position() | The position() method returns the position of int buffer. |
final int | capacity() | The capacity() method returns the capacity of associated int buffer. |
import java.nio.*;
|
C:\>java AllocatLongBuf Capacity of LongBuffer :256 Limit of LongBuffer :256 Position of LongBuffer :0 |