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


Java java.time.Instant.isAfter()用法及代碼示例



描述

這個java.time.Instant.isAfter(Instant otherInstant)方法檢查此時刻是否在指定的時刻之後。

聲明

以下是聲明java.time.Instant.isAfter(Instant otherInstant)方法。

public boolean isAfter(Instant otherInstant)

參數

otherInstant- 要比較的另一個瞬間,不為空。

返回值

如果此時刻在指定時刻之後,則為 true。

異常

NullPointerException- 如果 otherInstant 為空。

示例

下麵的例子展示了 java.time.Instant.isAfter(Instant otherInstant) 方法的用法。

package com.tutorialspoint;

import java.time.Instant;

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

      Instant instant = Instant.parse("2017-02-03T10:37:30.00Z");
      System.out.println("Instant #1:" + instant);  

      Instant instant1 = Instant.parse("2017-03-03T10:37:30.00Z");
      System.out.println("Instant #2:" + instant1);  

      boolean result = instant.isAfter(instant1);
      System.out.println(result ? "Instant #1 is after Instant #2."
        :"Instant #1 is not after as Instant #2.");  
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果 -

Instant #1:2017-02-03T10:37:30Z
Instant #2:2017-03-03T10:37:30Z
Instant #1 is not after as Instant #2.

相關用法


注:本文由純淨天空篩選整理自 java.time.Instant.isAfter() Method Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。