Java IO Tutorial - Java FloatBuffer.put(int index, float f)








Syntax

FloatBuffer.put(int index, float f) has the following syntax.

public abstract FloatBuffer put(int index,  float f)

Example

In the following code shows how to use FloatBuffer.put(int index, float f) method.

/*  ww w.  j a va2 s. c  o  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(1,1.23F);
    
    System.out.println(Arrays.toString(floatBuffer.array()));

  }
}

The code above generates the following result.