Java DoubleBuffer.put(double d)
Syntax
DoubleBuffer.put(double d) has the following syntax.
public abstract DoubleBuffer put(double d)
Example
In the following code shows how to use DoubleBuffer.put(double d) method.
import java.nio.DoubleBuffer;
import java.util.Arrays;
//from www . j a v a2 s . com
public class Main {
private static final int BSIZE = 1024;
public static void main(String[] args) {
DoubleBuffer bb = DoubleBuffer.allocate(BSIZE);
bb.put(98765);
System.out.println(Arrays.toString(bb.array()));
}
}
The code above generates the following result.