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 elements 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 |
| Buffer | reset() | The reset() method reset the mark at previous position. |
import java.nio.*;
|
| C:\>java ResetMark Previous mark position of buffer : 3 Position of buffer : 4 Reset buffer position at previous position : 3 |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.