Java Guava | Doubles.hashCode() method with Examples Last Updated : 11 Jul, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report Doubles.hashCode() is a method of Doubles Class in Guava Library which is used to return a hash code for a double 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(double value) Parameter: This method takes a mandatory parameter value which is a double 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: Java // Java code to show implementation of // Guava's Doubles.hashCode() method import com.google.common.primitives.Doubles; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Using Doubles.hashCode() method to // get the hash code for value System.out.println("HashCode value of 10.12: " + Doubles.hashCode(10.12)); } } Output: HashCode value of 10.12: -470599859 Example 2: Java // Java code to show implementation of // Guava's Doubles.hashCode() method import com.google.common.primitives.Doubles; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Using Doubles.hashCode() method to // get the hash code for value System.out.println("HashCode value of 20.45: " + Doubles.hashCode(20.45)); } } Output: HashCode value of 20.45: 1929854976 Reference: https://guava.dev/releases/19.0/api/docs/com/google/common/primitives/Doubles.html#hashCode(double) Comment More infoAdvertise with us Next Article Double hashCode() method in Java with examples S Sahil_Bansall Follow Improve Article Tags : Java Java-Functions java-guava Guava-Doubles Practice Tags : Java Similar Reads Java Guava | Bytes.hashCode() method with Examples Bytes.hashCode() is a method of Bytes Class in Guava Library which is used to return a hash code for a byte 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(byt 2 min read Java Guava | Bytes.hashCode() method with Examples Bytes.hashCode() is a method of Bytes Class in Guava Library which is used to return a hash code for a byte 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(byt 2 min read Java Guava | Booleans.hashCode() method with Examples Booleans.hashCode() is a method of Booleans class in Guava Library which is used to return a hash code for a boolean 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 has 1 min read Java Guava | Booleans.hashCode() method with Examples Booleans.hashCode() is a method of Booleans class in Guava Library which is used to return a hash code for a boolean 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 has 1 min read Double hashCode() method in Java with examples The hashCode() method of Double class is a built-in method use to return the hashcode value of this Double object. Syntax: DoubleObject.hashCode() Parameters: It takes no parameters. Return Type: It returns an int value. The value returned is (int)(v^(v>>>32)) where v is a long variable equ 1 min read Double hashCode() method in Java with examples The hashCode() method of Double class is a built-in method use to return the hashcode value of this Double object. Syntax: DoubleObject.hashCode() Parameters: It takes no parameters. Return Type: It returns an int value. The value returned is (int)(v^(v>>>32)) where v is a long variable equ 1 min read Like