In this tutorial, you will see how to allocate a short buffer in java.
In this tutorial, you will see how to allocate a short buffer in java.In this tutorial, we will see how to allocate a new short buffer.
ShortBuffer API:
The java.nio.ShortBuffer class extends java.nio.Buffer class. It provides the following methods:
Return type | Method | Description |
static ShortBuffer | allocate( int capacity) | The allocate() method allocate a short buffer of given capacity. |
Buffer API:
The java.nio.Buffer class extends java.lang.Objact class. It provides the following methods:
Return type | Method | Description |
int | limit() | The limit() method returns the limit of short buffer. |
int | position() | The position() method returns the position of short buffer. |
final int | capacity() | The capacity() method returns the capacity of associated short buffer. |
import java.nio.*;
|
C:\>java AllocateShort Limit of short buffer : 1 capacity of short buffer : 256 Content in shortbuffer : 565 |