ShortBuffer.put(ShortBuffer src) has the following syntax.
public ShortBuffer put(ShortBuffer src)
In the following code shows how to use ShortBuffer.put(ShortBuffer src) method.
import java.nio.ShortBuffer; import java.util.Arrays; /* w ww. ja v a 2 s . c o m*/ public class Main { public static void main(String[] args) { ShortBuffer bb = ShortBuffer.allocate(10); bb.put((short)100); bb.rewind(); ShortBuffer shortBuffer2 = ShortBuffer.allocate(10); shortBuffer2.put(bb); System.out.println(Arrays.toString(shortBuffer2.array())); } }
The code above generates the following result.