Java FloatBuffer.put(float[] src)
Syntax
FloatBuffer.put(float[] src) has the following syntax.
public final FloatBuffer put(float[] src)
Example
In the following code shows how to use FloatBuffer.put(float[] src) method.
// w w w . j a v a2s. co m
import java.nio.FloatBuffer;
import java.util.Arrays;
public class Main {
public static void main(String[] args) {
FloatBuffer floatBuffer = FloatBuffer.allocate(10);
floatBuffer.put(new float[]{1.23F});
System.out.println(Arrays.toString(floatBuffer.array()));
}
}
The code above generates the following result.