Java CharBuffer.hashCode()
Syntax
CharBuffer.hashCode() has the following syntax.
public int hashCode()
Example
In the following code shows how to use CharBuffer.hashCode() method.
//from ww w.j a va 2 s .com
import java.nio.CharBuffer;
public class Main {
public static void main(String[] args) {
CharBuffer cb1 = CharBuffer.allocate(50);
cb1.append("java2s.com");
cb1.rewind();
System.out.println(cb1.hashCode());
}
}
The code above generates the following result.