IntBuffer.put(int i) has the following syntax.
public abstract IntBuffer put(int i)
In the following code shows how to use IntBuffer.put(int i) method.
/*from www . j a v a 2 s . com*/ import java.nio.IntBuffer; import java.util.Arrays; public class Main { public static void main(String[] args) { IntBuffer bb = IntBuffer.wrap(new int[] { 0, 1, 2, 3, 4, 5, 6 }); bb.put(100); System.out.println(Arrays.toString(bb.array())); } }
The code above generates the following result.