Java IO Tutorial - 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.

//w  ww  .  j  a va  2  s  . c om
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.