Wednesday, September 3, 2025
HomeLanguagesJavaOptional equals() method in Java with Examples

Optional equals() method in Java with Examples

The equals() method of java.util.Optional class in Java is used to check for equality of this Optional with the specified Optional. This method takes an Optional instance and compares it with this Optional and returns a boolean value representing the same.

Syntax:

public boolean equals(Object obj)

Parameter: This method accepts a parameter obj which is the Optional to be checked for equality with this Optional.

Return Value: This method returns a boolean which tells if this Optional is equal to the specified Object.

Exception: This method do not throw any Exception.

Program 1:




// Java program to demonstrate
// the above method
  
import java.text.*;
import java.util.*;
  
public class OptionalDemo {
    public static void main(String[] args)
    {
  
        Optional<Integer> op1
            = Optional.of(456);
  
        System.out.println("Optional 1: "
                           + op1);
  
        Optional<Integer> op2
            = Optional.of(456);
  
        System.out.println("Optional 2: "
                           + op2);
  
        System.out.println("Comparing Optional 1"
                           + " and Optional 2: "
                           + op1.equals(op2));
    }
}


Output:

Optional 1: Optional[456]
Optional 2: Optional[456]
Comparing Optional 1 and Optional 2: true

Program 2:




// Java program to demonstrate
// the above method
  
import java.text.*;
import java.util.*;
  
public class OptionalDemo {
    public static void main(String[] args)
    {
  
        Optional<Integer> op1
            = Optional.of(456);
  
        System.out.println("Optional 1: "
                           + op1);
  
        Optional<Integer> op2
            = Optional.empty();
  
        System.out.println("Optional 2: "
                           + op2);
  
        System.out.println("Comparing Optional 1"
                           + " and Optional 2: "
                           + op1.equals(op2));
    }
}


Output:

Optional 1: Optional[456]
Optional 2: Optional.empty
Comparing Optional 1 and Optional 2: false

Reference: https://docs.oracle.com/javase/9/docs/api/java/util/Optional.html#equals-java.lang.Object-

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

Most Popular

Dominic
32260 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6625 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6746 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6694 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS