Friday, October 24, 2025
HomeLanguagesJavaChronoLocalDateTime compareTo() method in Java with Examples

ChronoLocalDateTime compareTo() method in Java with Examples

The compareTo() method of ChronoLocalDateTime interface in Java method compares this date to another date.

Syntax:

default int compareTo(ChronoLocalDateTime other)

Parameter: This method accepts a parameter other which specifies the other date to compare to and it is not specifically null.

Return Value: It returns the comparator value which is negative if it is less else it is positive if it is greater.

Below programs illustrate the compareTo() method of ChronoLocalDateTime in Java:

Program 1:




// Program to illustrate the compareTo() method
  
import java.util.*;
import java.time.*;
import java.time.chrono.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // First date
        ChronoLocalDateTime dt
            = LocalDateTime.parse("2018-12-06T19:21:12");
  
        System.out.println(dt);
  
        // Second date
        ChronoLocalDateTime dt1
            = LocalDateTime.parse("2018-12-06T19:21:12");
  
        System.out.println(dt1);
  
        try {
            // Compare both dates
            System.out.println(dt1.compareTo(dt));
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

2018-12-06T19:21:12
2018-12-06T19:21:12
0

Program 2:




// Program to illustrate the compareTo() method
  
import java.util.*;
import java.time.*;
import java.time.chrono.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // First date
        ChronoLocalDateTime dt
            = LocalDateTime.parse("2018-12-05T19:21:12");
        System.out.println(dt);
  
        // Second date
        ChronoLocalDateTime dt1
            = LocalDateTime.parse("2018-12-06T19:21:12");
        System.out.println(dt1);
  
        try {
            // Compare both dates
            System.out.println(dt1.compareTo(dt));
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

2018-12-05T19:21:12
2018-12-06T19:21:12
1

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

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

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS