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