In this tutorial you will see how to allocate a new int buffer in java.
In this tutorial you will see how to allocate a new int buffer in java.In this tutorial, we will see how to allocate a new int buffer.
IntBuffer API:
The java.nio.IntBuffer class extends java.nio.Buffer class. It provides the following methods:
Return type | Method | Description |
static IntBuffer | allocate( int capacity) | The allocate() method allocate a int 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 AllocateIntBuffer Position of IntBuffer :0 Limit of IntBuffer :1024 Capacity of IntBuffer :1024 |