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 |
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.