java.time.LocalDate.isAfter(ChronoLocalDate other)方法

java.time.LocalDate.isAfter(ChronoLocalDate other)方法检查此日期是否在指定日期之后。

声明

以下是java.time.LocalDate.isAfter(ChronoLocalDate other)方法的声明。

public boolean isAfter(ChronoLocalDate other)

参数

  • other - 要比较的另一个日期,而不是null

返回值

如果此日期在指定日期之后,则为true

示例

以下示例显示了java.time.LocalDate.isAfter(ChronoLocalDate other)方法的用法。

package com.zaixian;

import java.time.LocalDate;

public class LocalDateDemo {
   public static void main(String[] args) {

      LocalDate date = LocalDate.parse("2017-02-03");
      LocalDate date1 = LocalDate.parse("2017-03-03");
      System.out.println(date1.isAfter(date));  
   }
}

编译并运行上面的程序,这将产生以下结果 -

true

上一篇: java.time.LocalDate类 下一篇: java.time.LocalDateTime类