Wednesday, October 8, 2025
HomeLanguagesJavaJava Guava | Shorts.hashCode() method with Examples

Java Guava | Shorts.hashCode() method with Examples

Shorts.hashCode() is a method of Shorts Class in Guava Library which is used to return a hash code for a short 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(short value)

Parameter: This method takes a mandatory parameter value which is a short 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 code to show implementation of
// Guava's Shorts.hashCode() method
  
import com.google.common.primitives.Shorts;
import java.util.Arrays;
  
class GFG {
  
    // Driver's code
    public static void main(String[] args)
    {
  
        // Using Shorts.hashCode() method to
        // get the hash code for value
        System.out.println("HashCode value of 15: "
                           + Shorts.hashCode((short)15));
    }
}


Output:

HashCode value of 15: 15

Example 2:




// Java code to show implementation of
// Guava's Shorts.hashCode() method
  
import com.google.common.primitives.Shorts;
import java.util.Arrays;
  
class GFG {
    // Driver's code
    public static void main(String[] args)
    {
        // Using Shorts.hashCode() method to
        // get the hash code for value
        System.out.println("HashCode value of 10: "
                           + Shorts.hashCode((short)10));
    }
}


Output:

HashCode value of 10: 10

Reference: https://google.github.io/guava/releases/23.0/api/docs/com/google/common/primitives/Shorts.html#hashCode-short-

RELATED ARTICLES

Most Popular

Dominic
32342 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6712 POSTS0 COMMENTS
Nicole Veronica
11875 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11937 POSTS0 COMMENTS
Shaida Kate Naidoo
6833 POSTS0 COMMENTS
Ted Musemwa
7092 POSTS0 COMMENTS
Thapelo Manthata
6786 POSTS0 COMMENTS
Umr Jansen
6789 POSTS0 COMMENTS