Sunday, September 7, 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
32271 POSTS0 COMMENTS
Milvus
82 POSTS0 COMMENTS
Nango Kala
6641 POSTS0 COMMENTS
Nicole Veronica
11808 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11870 POSTS0 COMMENTS
Shaida Kate Naidoo
6755 POSTS0 COMMENTS
Ted Musemwa
7030 POSTS0 COMMENTS
Thapelo Manthata
6705 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS