Example usage for java.nio IntBuffer duplicate

List of usage examples for java.nio IntBuffer duplicate

Introduction

In this page you can find the example usage for java.nio IntBuffer duplicate.

Prototype

public abstract IntBuffer duplicate();

Source Link

Document

Returns a duplicated buffer that shares its content with this buffer.

Usage

From source file:Main.java

public static void main(String[] args) {
    IntBuffer intBuffer = IntBuffer.allocate(10);
    intBuffer.put(100);/*w w  w  .  j  av a 2  s.c  o  m*/

    intBuffer.rewind();

    IntBuffer intBuffer2 = intBuffer.duplicate();

    System.out.println(intBuffer2.equals(intBuffer2));

}