List of usage examples for java.nio IntBuffer hashCode
public int hashCode()
From source file:Main.java
public static void main(String[] args) { IntBuffer bb = IntBuffer.allocate(10); bb.put(100);//from w w w . j av a2 s . c om System.out.println(bb.hashCode()); }