In this tutorial, we will see how to create a short 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 shortBuffer | asShortBuffer() | The asShortBuffer() method returns short buffer based on 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 short buffer. |
| final int | capacity() | The capacity() method returns the capacity of associated short buffer. |
import java.nio.*;
|
| C:>java ShortBufferDemo1 capacity of short buffer :512 Limit of short buffer :1 Content in shortbuffer : 32767 |
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.