Java中ChronoLocalDateTime接口的isAfter()方法用於檢查作為參數傳遞的日期是否在此ChronoLocalDateTime實例之後。它返回一個顯示相同值的布爾值。
用法:
default boolean isAfter(ChronoLocalDateTime otherDate)
參數:此方法接受參數otherDate,該參數指定要與此ChronoLocalDateTime比較的其他日期時間。它不能為空。
返回值:該函數返回布爾值,該值顯示此日期時間是否晚於指定的日期時間。
以下示例程序旨在說明ChronoLocalDateTime.isAfter()方法:
示例1:
// Program to illustrate the isAfter() method
import java.util.*;
import java.time.*;
import java.time.chrono.*;
public class GfG {
public static void main(String[] args)
{
// Parses the date
ChronoLocalDateTime dt1
= LocalDateTime.parse("2018-11-03T12:45:30");
// Prints the date
System.out.println(dt1);
// Parses the date
ChronoLocalDateTime dt2
= LocalDateTime.parse("2016-12-04T12:45:30");
// Prints the date
System.out.println(dt2);
// Compares both dates
System.out.println(dt1.isAfter(dt2));
}
}
輸出:
2018-11-03T12:45:30 2016-12-04T12:45:30 true
示例2:
// Program to illustrate the isAfter() method
import java.util.*;
import java.time.*;
import java.time.chrono.*;
public class GfG {
public static void main(String[] args)
{
// Parses the date
ChronoLocalDateTime dt1
= LocalDateTime.parse("2018-11-03T12:45:30");
// Prints the date
System.out.println(dt1);
// Parses the date
ChronoLocalDateTime dt2
= LocalDateTime.parse("2019-12-04T12:45:30");
// Prints the date
System.out.println(dt2);
// Compares both dates
System.out.println(dt1.isAfter(dt2));
}
}
輸出:
2018-11-03T12:45:30 2019-12-04T12:45:30 false
相關用法
- Java Year isAfter()用法及代碼示例
- Java OffsetDateTime isAfter()用法及代碼示例
- Java ChronoLocalDate isAfter()用法及代碼示例
- Java OffsetTime isAfter()用法及代碼示例
- Java Instant isAfter()用法及代碼示例
- Java MonthDay isAfter()用法及代碼示例
- Java LocalDateTime isAfter()用法及代碼示例
- Java ChronoZonedDateTime isAfter()用法及代碼示例
- Java YearMonth isAfter()用法及代碼示例
- Java LocalDate isAfter()用法及代碼示例
- Java LocalTime isAfter()用法及代碼示例
- Java ChronoLocalDateTime from()用法及代碼示例
- Java ChronoLocalDateTime until()用法及代碼示例
- Java ChronoLocalDateTime get()用法及代碼示例
- Java ChronoLocalDateTime query()用法及代碼示例
注:本文由純淨天空篩選整理自srinam大神的英文原創作品 ChronoLocalDateTime isAfter() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。