In this tutorial, you will see how to check long buffer is read_only or not.
In this tutorial, you will see how to check long buffer is read_only or not.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. |