In this tutorial, you will see how to rewind a short buffer in java.
In this tutorial, you will see how to rewind a short buffer in java.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 new short buffer. |
ShortBuffer | put(short [] array) | The put(..)method transfer the content of a short array into short buffer. |
Buffer API:
The java.nio.Buffer class extends java.lang.Object class. It provides the following methods:
Return type | Method | Description |
final boolean | hasRemaining() | The hasRemaining() method tell whether there are any elements in buffer or not. |
final Buffer | rewind() | The rewind() method set the position zero and content not change. |
import java.nio.*;
|
C:\>java RewindShortBuff Elements in short buffer : 12 21 87 34 12 After using rewind method elements of short buffer : 12 21 87 34 12 |