VOOZH about

URL: https://www.geeksforgeeks.org/java/java-guava-booleans-hashcode-method-with-examples/

⇱ Java Guava | Booleans.hashCode() method with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Java Guava | Booleans.hashCode() method with Examples

Last Updated : 11 Jul, 2025
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 hashCode(boolean value)
Parameter: This method takes a mandatory parameter value which is a boolean 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:
1231
Example 2 :
Comment
Article Tags: