Open In App

Java Guava | Ints.hashCode() method with Examples

Last Updated : 29 Jan, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
Ints.hashCode() is a method of Ints Class in Guava Library which is used to return a hash code for an int value. The hashCode is an unique integer value that is calculated by the compiler for an object. It remain the same if the object value does not changes. Syntax:
public static int hashCode(int value)
Parameter: This method takes a mandatory parameter value which is an int value for which the hashCode is to be found. Return Value: This method returns an integer value which is the hash code for the specified value. Below programs illustrate the use of the above method: Example 1:
Output:
HashCode value of 15: 15
Example 2:
Output:
HashCode value of 10: 10
Reference: https://google.github.io/guava/releases/22.0/api/docs/com/google/common/primitives/Ints.html#hashCode-int-

Next Article
Practice Tags :

Similar Reads