Java CharBuffer.equals(Object ob)
Syntax
CharBuffer.equals(Object ob) has the following syntax.
public boolean equals(Object ob)
Example
In the following code shows how to use CharBuffer.equals(Object ob) method.
//from ww w .j a v a2 s.c o m
import java.nio.CharBuffer;
import java.util.Arrays;
public class Main {
public static void main(String[] args) {
CharBuffer cb1 = CharBuffer.allocate(50);
cb1.append("java2s.com");
cb1.rewind();
System.out.println(Arrays.toString(cb1.array()));
CharBuffer cb2 = cb1.slice();
System.out.println(cb2.equals(cb1));
}
}
The code above generates the following result.