In this tutorial, you will see how to check long buffer is read_only or not.
The java.nio. LongBuffer class extends java.nio.Buffer class. It provides the following methods:
| Return type | Method | Description |
| static LongBuffer | allocate( int capacity) | The allocate(..) method allocate a long buffer of given capacity. |
Buffer API:
The java.nio.Buffer class extends java.lang.Object class. It provides the following methods:
| Return type | Method | Description |
| abstract boolean | isReadOnly() | The isReadOnly() method tells this buffer is read only or not. |
import java.nio.*;
|
| C:\>java IsReadOnlyDemo Buffer is not read only. 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.