java日期比较

java.util.Date

compareTo

public int compareTo(Date anotherDate)
比较两个日期的顺序。

 

指定者:
接口 Comparable<Date> 中的 compareTo
参数:
anotherDate - 要比较的 Date
返回:
如果参数 Date 等于此 Date,则返回值 0;如果此 Date 在 Date 参数之前,则返回小于 0 的值;如果此 Date 在 Date 参数之后,则返回大于 0 的值。
抛出:
NullPointerException - 如果 anotherDate 为 null。
从以下版本开始:
1.2
 

你可能感兴趣的:(java)