Java ChronoLocalDate isBefore()方法及实例
Java中ChronoLocalDate接口的isBefore()方法检查该日期是否在指定日期之前,并返回一个布尔值来说明这一点。
语法:
public boolean isAfter(ChronoLocalDate date2)
参数 :该方法接受一个强制参数date2,即另一个要比较的日期,并且不为空。
返回值 :如果这个日期在指定日期之前,该函数返回真。
以下程序说明了Java中ChronoLocalDate的 isBefore() 方法。
程序1 :
// Program to illustrate the isBefore() method
import java.util.*;
import java.time.*;
import java.time.chrono.*;
public class GfG {
public static void main(String[] args)
{
// Parses the first date
ChronoLocalDate dt1
= LocalDate.parse("2018-11-27");
// Parses the second date
ChronoLocalDate dt2
= LocalDate.parse("2017-11-27");
// Check if the specified date
// is before this date
System.out.println(dt1.isBefore(dt2));
}
}
输出。
false
程序2 :
// Program to illustrate the isBefore() method
import java.util.*;
import java.time.*;
import java.time.chrono.*;
public class GfG {
public static void main(String[] args)
{
// Parses the first date
ChronoLocalDate dt1
= LocalDate.parse("2018-11-27");
// Parses the second date
ChronoLocalDate dt2
= LocalDate.parse("2019-11-27");
// Check if the specified date
// is before this date
System.out.println(dt1.isBefore(dt2));
}
}
输出。
true
参考资料 : https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDate.html#isBefore-java.time.chrono.ChronoLocalDate-