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 |
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.