Saturday, November 22, 2025
HomeLanguagesJavaOptional hashCode() method in Java with examples

Optional hashCode() method in Java with examples

The hashCode() method of java.util.Optional class in Java is used to get the hashCode value of this Optional instance. If there is no value present in this Optional instance, then this method returns 0.

Syntax:

public int hashCode()

Parameter: This method do not accepts any parameter.

Return Value: This method returns the hashCode value of this Optional instance. If there is no value present in this Optional instance, then this method returns 0.

Exception: This method do not throw any Exception.

Program 1:




// Java program to demonstrate
// the above method
  
import java.util.*;
  
public class OptionalDemo {
    public static void main(String[] args)
    {
  
        Optional<Integer> op
            = Optional.of(456);
  
        System.out.println("Optional: "
                           + op);
  
        System.out.println("Optional hashCode value: "
                           + op.hashCode());
    }
}


Output:

Optional: Optional[456]
Optional hashCode value: 456

Program 2:




// Java program to demonstrate
// the above method
  
import java.util.*;
  
public class OptionalDemo {
    public static void main(String[] args)
    {
  
        Optional<Integer> op
            = Optional.empty();
  
        System.out.println("Optional: "
                           + op);
  
        System.out.println("Optional hashCode value: "
                           + op.hashCode());
    }
}


Output:

Optional: Optional.empty
Optional hashCode value: 0

Reference: https://docs.oracle.com/javase/9/docs/api/java/util/Optional.html#hashCode–

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6785 POSTS0 COMMENTS
Nicole Veronica
11932 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12000 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6864 POSTS0 COMMENTS
Umr Jansen
6852 POSTS0 COMMENTS