Exemple de méthode java.time.Instant.compareTo ()

La description

le java.time.Instant.compareTo(Instant otherInstant) compare cet instant à l'instant spécifié.

Déclaration

Voici la déclaration pour java.time.Instant.compareTo(Instant otherInstant) méthode.

public int compareTo(Instant otherInstant)

Paramètres

otherInstant - l'autre instant auquel comparer, non nul.

Valeur de retour

la valeur de comparaison, négative si elle est inférieure, positive si elle est supérieure.

Exceptions

NullPointerException - si otherInstant est nul.

Exemple

L'exemple suivant montre l'utilisation de la méthode 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.");  
   }
}

Compilons et exécutons le programme ci-dessus, cela produira le résultat suivant -

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