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


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



描述

這個java.time.Instant.compareTo(Instant otherInstant)方法將此瞬間與指定的瞬間進行比較。

聲明

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

public int compareTo(Instant otherInstant)

參數

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

返回值

比較器值,如果較小則為負,如果較大則為正。

異常

NullPointerException- 如果 otherInstant 為空。

示例

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

package com.tutorialspoint;

import java.time.Instant;
import java.time.OffsetDateTime;
import java.time.ZoneId;
import java.time.ZoneOffset;
import java.time.ZonedDateTime;
import java.util.Set;

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);  

      int result = instant.compareTo(instant1);
      System.out.println(result >1 ? "Instant #1 is greater than Instant #2."
        :"Instant #2 is greater than Instant #1.");  
   }
}

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

Instant #1:2017-02-03T10:37:30Z
Instant #2:2017-03-03T10:37:30Z
Instant #2 is greater than Instant #1.

相關用法


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