Example usage for java.nio IntBuffer slice

List of usage examples for java.nio IntBuffer slice

Introduction

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

Prototype

public abstract IntBuffer slice();

Source Link

Document

Returns a sliced 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);/*from   ww  w.  j  ava  2 s  .  c  o m*/

    intBuffer.rewind();

    IntBuffer intBuffer2 = intBuffer.slice();

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

}