java.time.OffsetDateTime.isAfter(OffsetDateTime other)方法

2019-10-16 22:42:45

java.time.OffsetDateTime.isAfter(OffsetDateTime other)方法檢查此日期是否在指定的日期時間之後。

宣告

以下是java.time.OffsetDateTime.isAfter(OffsetDateTime other)方法的宣告。

public boolean isAfter(OffsetDateTime other)

引數

  • other - 要比較的其他日期時間,而不是null

返回值

如果此日期時間在指定的日期時間之後,則為true

範例

以下範例顯示了java.time.OffsetDateTime.isAfter(OffsetDateTime other)方法的用法。

package com.yiibai;

import java.time.OffsetDateTime;

public class OffsetDateTimeDemo {
   public static void main(String[] args) {

      OffsetDateTime date = OffsetDateTime.parse("2017-02-03T12:30:30+01:00");
      OffsetDateTime date1 = OffsetDateTime.parse("2017-03-03T12:30:30+01:00");
      System.out.println(date1.isAfter(date));  
   }
}

編譯並執行上面的程式,這將產生以下結果 -

true