當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java ChronoLocalDateTime isBefore()用法及代碼示例


Java中ChronoLocalDateTime接口的isBefore()方法用於檢查作為參數傳遞的日期是否早於此ChronoLocalDateTime實例。它返回一個顯示相同值的布爾值。

用法:

default boolean isBefore(ChronoLocalDateTime otherDate)

參數:此方法接受參數otherDate,該參數指定要與此ChronoLocalDateTime比較的其他日期時間。它不能為空。


返回值:函數返回布爾值,顯示此日期時間是否早於指定的日期時間。

以下示例程序旨在說明ChronoLocalDateTime.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 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.isBefore(dt2)); 
    } 
}
輸出:
2018-11-03T12:45:30
2016-12-04T12:45:30
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 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.isBefore(dt2)); 
    } 
}
輸出:
2018-11-03T12:45:30
2019-12-04T12:45:30
true

參考: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDateTime.html#isBefore-java.time.chrono.ChronoLocalDateTime-



相關用法


注:本文由純淨天空篩選整理自srinam大神的英文原創作品 ChronoLocalDateTime isBefore() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。