Friday, October 10, 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
32349 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6715 POSTS0 COMMENTS
Nicole Veronica
11878 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6837 POSTS0 COMMENTS
Ted Musemwa
7097 POSTS0 COMMENTS
Thapelo Manthata
6792 POSTS0 COMMENTS
Umr Jansen
6791 POSTS0 COMMENTS