List of usage examples for java.nio DoubleBuffer hashCode
@HotSpotIntrinsicCandidate public native int hashCode();
From source file:Main.java
public static void main(String[] args) { DoubleBuffer bb = DoubleBuffer.allocate(BSIZE); bb.put(98765);/*from ww w.jav a2s.c om*/ System.out.println(bb.hashCode()); }