LongBuffer API :
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 new long buffer. |
| abstract LongBuffer | asReadOnlyBuffer() | The asReadOnlyBuffer() method create a new read-only buffer that share the content of given long buffer. |
import java.nio.*; |
| C:\>Java ReadOnlyBuffer Content in long buffer. 345678 8765433 Content in new long buffer. 345678 8765433 New 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.