Wednesday, July 3, 2024
HomeLanguagesJavaJava Guava | Chars.hashCode() method with Examples

Java Guava | Chars.hashCode() method with Examples

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

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


Output:

HashCode value of y: 121

Example 2:




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


Output:

HashCode value of J: 74

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

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments