Java DoubleBuffer.arrayOffset()

Syntax

DoubleBuffer.arrayOffset() has the following syntax.

public final int arrayOffset()

Example

In the following code shows how to use DoubleBuffer.arrayOffset() method.


//ww w . j av a 2 s .co m
import java.nio.DoubleBuffer;
import java.util.Arrays;

public class Main {
  private static final int BSIZE = 1024;

  public static void main(String[] args) {
    DoubleBuffer bb = DoubleBuffer.allocate(BSIZE);

    bb.put(new double[]{98765,12345});
    
    System.out.println(bb.arrayOffset());

    
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.nio »




Buffer
ByteBuffer
ByteOrder
CharBuffer
DoubleBuffer
FloatBuffer
IntBuffer
LongBuffer
MappedByteBuffer
ShortBuffer