Java CharBuffer.hasArray()

Syntax

CharBuffer.hasArray() has the following syntax.

public final boolean hasArray()

Example

In the following code shows how to use CharBuffer.hasArray() method.


import java.nio.CharBuffer;
/*  w w w  .j av  a 2  s . c o m*/
public class Main {
  public static void main(String[] args) {
    CharBuffer cb1 = CharBuffer.allocate(50);
    cb1.append("java2s.com");
    cb1.rewind();

    System.out.println(cb1.hasArray());
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.nio »




Buffer
ByteBuffer
ByteOrder
CharBuffer
DoubleBuffer
FloatBuffer
IntBuffer
LongBuffer
MappedByteBuffer
ShortBuffer