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

La description

le java.time.Instant.equals(Object otherInstant) La méthode vérifie si cet instant est égal à l'instant spécifié.

Déclaration

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

public boolean equals(Object otherInstant)

Paramètres

otherInstant - l'autre instant, null retourne faux.

Valeur de retour

vrai si l'autre instant est égal à celui-ci.

Exemple

L'exemple suivant montre l'utilisation de la méthode java.time.Instant.equals (Object 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.equals(instant1);
      System.out.println(result ? "Instant #1 is same as Instant #2."
         :"Instant #2 is not same as 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 not same as Instant #1.