Wraps a double type array into a buffer


 

Wraps a double type array into a buffer

In this tutorial you will see how to wraps a double array into a buffer.

In this tutorial you will see how to wraps a double array into a buffer.

Wraps a double type array into a buffer

In this tutorial you will see how to wraps a double array into a buffer. The public static DoubleBuffer wrap(double[] array) method allow double array to wrap it into a buffer.

Code:

import java.nio.DoubleBuffer;

public class DoubleBufferDemo {
  public static void main(String[] args) {
    double[] ch = new double[] { 121.3232323.24332353.4432.45453.756 };
    DoubleBuffer doublebuffer = DoubleBuffer.wrap(ch);
    System.out.println(doublebuffer.get(1));
  }
}

Output:

  2323.243

Download this code

Ads