LocalDateTime compareTo( ChronoLocalDateTime other) example

Description

LocalDateTime compareTo(ChronoLocalDateTime<?> other) compares this date-time to another date-time.

Syntax

compareTo has the following syntax.


public int compareTo(ChronoLocalDateTime<?> other)

Example

The following example shows how to use compareTo.


import java.time.LocalDateTime;
//from www  . j  av a 2s. com
public class Main {
  public static void main(String[] args) {
    LocalDateTime a = LocalDateTime.of(2012, 6, 30, 12, 00);
    LocalDateTime b = LocalDateTime.of(2012, 7, 1, 12, 00);
    System.out.println(a.compareTo(b));
    System.out.println(a.compareTo(a));
  }
}

The code above generates the following result.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset