List of usage examples for java.nio ShortBuffer hashCode
public int hashCode()
Source Link
From source file:Main.java
public static void main(String[] args) { ShortBuffer bb = ShortBuffer.allocate(10); bb.put((short) 100); System.out.println(bb.hashCode()); }