Java IntBuffer.compact()
Syntax
IntBuffer.compact() has the following syntax.
public abstract IntBuffer compact()
Example
In the following code shows how to use IntBuffer.compact() method.
import java.nio.IntBuffer;
import java.util.Arrays;
// www . ja v a2s . c o m
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.