Groovy - 日期和时间 compareTo()



比较两个日期的顺序。

语法

public int compareTo(Date anotherDate)

参数

anotherDate – 要比较的日期。

返回值 - 如果参数 Date 等于此 Date,则值为0;如果此 Date 早于 Date 参数,则值为小于 0;如果此 Date 迟于 Date 参数,则值为大于 0

示例

以下是使用此方法的一个示例 -

class Example { 
   static void main(String[] args) { 
      Date olddate = new Date("05/11/2015"); 
      Date newdate = new Date("05/11/2015"); 
      Date latestdate = new Date(); 
		
      System.out.println(olddate.compareTo(newdate)); 
      System.out.println(latestdate.compareTo(newdate)); 
   } 
}

当我们运行上述程序时,将获得以下结果 -

0 
1 
groovy_dates_times.htm
广告