Groovy - 日期和时间compareTo()


比较两个订购日期。

句法

public int compareTo(Date anotherDate)

参数

anotherDate – 要比较的日期。

返回值-如果参数 Date 等于此 Date,则值为0 ;如果此日期在 Date 参数之前,则为小于0的值;如果此日期位于 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