java.time.LocalDate.isAfter() 方法示例



说明

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

声明

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

public boolean isAfter(ChronoLocalDate other)

参数

other - 要比较的另一个日期,非空。

返回值

如果此日期在指定日期之后,则返回 true。

示例

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

package com.tutorialspoint;

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
广告
© . All rights reserved.