Home Tutorial Java Corejava Nio Wraps a double type array into a buffer

 
 

Wraps a double type array into a buffer
Posted on: July 28, 2010 at 12:00 AM
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

Related Tags for Wraps a double type array into a buffer:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.