In this tutorial, we will see how to create a long 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 LongBuffer | asIntBuffer() | The asIntBuffer() method returns long buffer based in 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 long buffer. |
| int | position() | The position() method returns the position of long buffer. |
| final int | capacity() | The capacity() method returns the capacity of associated long buffer. |
import java.nio.*;
|
| C:\>java LongByByteBuffer Content in long buffer. 6545555 787867 Capacity of LongBuffer : 128 Limit of LongBuffer : 2 Position of LongBuffer : 2 |
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.