IntBuffer.compact() has the following syntax.
public abstract IntBuffer compact()
In the following code shows how to use IntBuffer.compact() method.
import java.nio.IntBuffer; import java.util.Arrays; //w w w . ja v a2s. com public class Main { public static void main(String[] args) { IntBuffer intBuffer = IntBuffer.allocate(10); intBuffer.put(100); intBuffer.rewind(); IntBuffer intBuffer2 = intBuffer.compact(); System.out.println(Arrays.toString(intBuffer2.array())); } }
The code above generates the following result.