Java ShortBuffer.compact()
Syntax
ShortBuffer.compact() has the following syntax.
public abstract ShortBuffer compact()
Example
In the following code shows how to use ShortBuffer.compact() method.
/*from w w w .j a v a 2s. co m*/
import java.nio.ShortBuffer;
import java.util.Arrays;
public class Main {
public static void main(String[] args) {
ShortBuffer shortBuffer = ShortBuffer.allocate(10);
shortBuffer.put((short)100);
shortBuffer.rewind();
ShortBuffer shortBuffer2 = shortBuffer.compact();
System.out.println(Arrays.toString(shortBuffer2.array()));
}
}
The code above generates the following result.