Java IntBuffer.duplicate()
Syntax
IntBuffer.duplicate() has the following syntax.
public abstract IntBuffer duplicate()
Example
In the following code shows how to use IntBuffer.duplicate() method.
//from w ww.ja va 2 s. c om
import java.nio.IntBuffer;
import java.util.Arrays;
public class Main {
public static void main(String[] args) {
IntBuffer intBuffer = IntBuffer.allocate(10);
intBuffer.put(100);
intBuffer.rewind();
IntBuffer intBuffer2 = intBuffer.duplicate();
System.out.println(intBuffer2.equals(intBuffer2));
}
}
The code above generates the following result.