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