In this tutorial, we will see how to create a int buffer by wrapping an int array into a buffer.
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[] array) | The wrap(....) method wrap an existing int array and create int buffer. |
| int | limit() | The limit() method returns the limit of int buffer. |
| int | position() | The position() method returns the position of int buffer. |
| final int | capacity() | The capacity() method returns the capacity of associated int buffer. |
import java.nio.*;
|
| C:\>java WrapIntBuffer Content of int buffer. 3 2 5 6 Position of IntBuffer : 4 Limit of IntBuffer : 4 Capacity of IntBuffer : 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.