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