In this tutorial you will see how to create a int buffer with the help of byte buffer.
In this tutorial you will see how to create a int buffer with the help of byte buffer.In this tutorial, we will see how to create a int buffer with the help of byte buffer.
ByteBuffer API:
The java.nio.ByteBuffer class extends java.nio.Buffer class. It provides the following methods:
Return type | Method | Description |
static ByteBuffer | allocate( int capacity) | The allocate() method allocate a byte buffer of given capacity. |
abstrtact IntBuffer | asIntBuffer() | The asIntBuffer() method returns int buffer based in byte buffer. |
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 IntBufferDemo Content of int buffer. 1 2 3 4 Position of IntBuffer :4 Limit of IntBuffer :4 Capacity of IntBuffer :256 |