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. |
| abstract ShortBuffer | asReadOnlyBuffer() | The asReadOnlyBuffer() method create a new read-only buffer that share the content of given short buffer. |
import java.nio.*;
|
| C:\>java ReadOnlyBuffer Content in first short buffer : 75 53 first short buffer is not read only. Content in second short buffer : 75 53 Second short buffer is read only. |
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.