Java LongBuffer.hashCode()
Syntax
LongBuffer.hashCode() has the following syntax.
public int hashCode()
Example
In the following code shows how to use LongBuffer.hashCode() method.
import java.nio.LongBuffer;
//from ww w .j a v a 2 s.c o m
public class Main {
public static void main(String[] args) {
LongBuffer bb = LongBuffer.allocate(10);
bb.put(100);
System.out.println(bb.hashCode());
}
}
The code above generates the following result.