
- Java.lang - Home
- Java.lang - Boolean
- Java.lang - Byte
- Java.lang - Character
- Java.lang - Character.Subset
- Java.lang - Character.UnicodeBlock
- Java.lang - Class
- Java.lang - ClassLoader
- Java.lang - Compiler
- Java.lang - Double
- Java.lang - Enum
- Java.lang - Float
- Java.lang - InheritableThreadLocal
- Java.lang - Integer
- Java.lang - Long
- Java.lang - Math
- Java.lang - Number
- Java.lang - Object
- Java.lang - Package
- Java.lang - Process
- Java.lang - ProcessBuilder
- Java.lang - Runtime
- Java.lang - RuntimePermission
- Java.lang - SecurityManager
- Java.lang - Short
- Java.lang - StackTraceElement
- Java.lang - StrictMath
- Java.lang - String
- Java.lang - StringBuffer
- Java.lang - StringBuilder
- Java.lang - System
- Java.lang - Thread
- Java.lang - ThreadGroup
- Java.lang - ThreadLocal
- Java.lang - Throwable
- Java.lang - Void
- Java.lang Package Useful Resources
- Java.lang - Useful Resources
- Java.lang - Discussion
Java - Boolean hashCode() Method
Description
The Java Boolean hashCode() returns a hash code for this Boolean object.
Declaration
Following is the declaration for java.lang.Boolean.hashCode() method
public int hashCode()
Overrides
hashCode in class Object
Parameters
NA
Return Value
This method returns the integer 1231 if this object represents true and the integer 1237 if this object represents false.
Exception
NA
Getting HashCode of a Boolean Objects with true and false Values Example
The following example shows the usage of Boolean hashCode() method for Boolean objects having true and false values respectively. In this program, we've created two Boolean variables and assigned them a true and false valued Boolean Objects. Thereafter we're created two int variables to store the hashcodes obtained using hashCode() method. Both hashcodes are printed.
package com.tutorialspoint; public class BooleanDemo { public static void main(String[] args) { // create 2 Boolean objects b1, b2 Boolean b1, b2; // assign values to b1, b2 b1 = Boolean.valueOf(true); b2 = Boolean.valueOf(false); // create 2 int primitives int i1, i2; // assign the hash code of b1, b2 to i1, i2 i1 = b1.hashCode(); i2 = b2.hashCode(); String str1 = "Hash code of " + b1 + " is " +i1; String str2 = "Hash code of " + b2 + " is " +i2; // print i1, i2 values System.out.println( str1 ); System.out.println( str2 ); } }
Output
Let us compile and run the above program, this will produce the following result −
Hash code of true is 1231 Hash code of false is 1237
Getting HashCode of a Boolean Objects with Primitive boolean true and false Values Assigned Example
The following example shows the usage of Boolean hashCode() method for Boolean objects having true and false values respectively. In this program, we've created two Boolean variables and assigned them a true and false valued primitive boolean values. Thereafter we're created two int variables to store the hashcodes obtained using hashCode() method. Both hashcodes are printed.
package com.tutorialspoint; public class BooleanDemo { public static void main(String[] args) { // create 2 Boolean objects b1, b2 Boolean b1, b2; // assign values to b1, b2 b1 = true; b2 = false; // create 2 int primitives int i1, i2; // assign the hash code of b1, b2 to i1, i2 i1 = b1.hashCode(); i2 = b2.hashCode(); String str1 = "Hash code of " + b1 + " is " +i1; String str2 = "Hash code of " + b2 + " is " +i2; // print i1, i2 values System.out.println( str1 ); System.out.println( str2 ); } }
Output
Let us compile and run the above program, this will produce the following result −
Hash code of true is 1231 Hash code of false is 1237
Getting HashCode of a Boolean Objects with true and false Values Example
The following example shows the usage of Boolean hashCode() method for Boolean objects having true and false values respectively. In this program, we've created two Boolean variables and assigned them a true and false valued Boolean Objects. Thereafter we're created two int variables to store the hashcodes obtained using hashCode() method. Both hashcodes are printed.
package com.tutorialspoint; public class BooleanDemo { public static void main(String[] args) { // create 2 Boolean objects b1, b2 Boolean b1, b2; // assign values to b1, b2 b1 = Boolean.valueOf(true); b2 = new Boolean(false); // create 2 int primitives int i1, i2; // assign the hash code of b1, b2 to i1, i2 i1 = b1.hashCode(); i2 = b2.hashCode(); String str1 = "Hash code of " + b1 + " is " +i1; String str2 = "Hash code of " + b2 + " is " +i2; // print i1, i2 values System.out.println( str1 ); System.out.println( str2 ); } }
Output
Let us compile and run the above program, this will produce the following result −
Hash code of true is 1231 Hash code of false is 1237