In this tutorial, you will see how to transfer the content of a long buffer into another long buffer.
In this tutorial, you will see how to transfer the content of a long buffer into another long buffer.In this tutorial, we will see how to transfer the content of a long buffer into another long buffer.
LongBufferAPI:
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. |
LongBuffer | put(LongBuffer buffer) | The put(..)method transfer the content of a long buffer into another long buffer. |
import java.nio.*;
|
C:\>java TransferBufferValue Value in buffer. 345553322 22332434 575876433 After transfer a long buffer value into another buffer. Value in new long buffer. 345553322 22332434 575876433 |