Java ShortBuffer.allocate(int capacity)
Syntax
ShortBuffer.allocate(int capacity) has the following syntax.
public static ShortBuffer allocate(int capacity)
Example
In the following code shows how to use ShortBuffer.allocate(int capacity) method.
/*w w w . j av a 2 s . c om*/
import java.nio.ShortBuffer;
public class Main {
public static void main(String[] args) {
ShortBuffer bb = ShortBuffer.allocate(10);
bb.put((short)100);
System.out.println(bb.arrayOffset());
}
}
The code above generates the following result.