IntBuffer API :
The java.nio.IntBuffer class extends java.nio.Buffer class. It provides the following methods:
| Return type | Method | Description |
| static IntBuffer | wrap( int[] arrray) | The allocate(..) method allocate a new int buffer. |
| abstract IntBuffer | duplicate() | The duplicate() method returns a duplicate buffer that share the content of available buffer. |
import java.nio.*;
|
| C:\>java
IntDuplicateBuffer Content in original int buffer. 9 5 4 Content in duplicate int buffer. 9 5 4 |