LocalDateTime compareTo(ChronoLocalDateTime<?> other)
compares this date-time to another date-time.
compareTo
has the following syntax.
public int compareTo(ChronoLocalDateTime<?> other)
The following example shows how to use compareTo
.
import java.time.LocalDateTime; //from ww w. ja v a 2 s . c o m 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.