List of usage examples for java.nio IntBuffer duplicate
public abstract IntBuffer duplicate();
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)); }