Sunday, February 8, 2026
HomeLanguagesJavaChronoLocalDate isEqual() method in Java with Examples

ChronoLocalDate isEqual() method in Java with Examples

The isEqual() method of ChronoLocalDate interface in Java checks if this date is equal to the specified date or not.

Syntax:

public boolean isEqual(ChronoLocalDate date2)

Parameter: This method accept a single mandatory parameter date2 the other date to compare to and not null.

Return Value: The function returns true if this date is equal to the specified date.

Below programs illustrate the isEqual() method of ChronoLocalDate in Java:

Program 1:




// Program to illustrate the isEqual() method
  
import java.util.*;
import java.time.*;
import java.time.chrono.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the first date
        ChronoLocalDate dt1
            = LocalDate.parse("2018-11-27");
  
        // Parses the second date
        ChronoLocalDate dt2
            = LocalDate.parse("2018-11-27");
  
        // Check if these two are equal
        System.out.println(dt1.isEqual(dt2));
    }
}


Output:

true

Program 2:




// Program to illustrate the isEqual() method
  
import java.util.*;
import java.time.*;
import java.time.chrono.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the first date
        ChronoLocalDate dt1
            = LocalDate.parse("2018-11-27");
  
        // Parses the second date
        ChronoLocalDate dt2
            = LocalDate.parse("2015-11-27");
  
        // Check if these two are equal
        System.out.println(dt1.isEqual(dt2));
    }
}


Output:

false

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDate.html#isEqual-java.time.chrono.ChronoLocalDate-

RELATED ARTICLES

Most Popular

Dominic
32493 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6864 POSTS0 COMMENTS
Nicole Veronica
11990 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12084 POSTS0 COMMENTS
Shaida Kate Naidoo
7000 POSTS0 COMMENTS
Ted Musemwa
7241 POSTS0 COMMENTS
Thapelo Manthata
6951 POSTS0 COMMENTS
Umr Jansen
6936 POSTS0 COMMENTS