El método equals(Object otherInstant) de la clase Instant se usa para comparar este Instant con el objeto Instant pasado como parámetro. La comparación entre ambas instancias se basa en la posición en la línea de tiempo de los instantes. El valor que devolverá este método se determina de la siguiente manera:
- si ambas instancias son iguales, entonces se devuelve verdadero
- si ambas instancias no son iguales, se devuelve falso.
Sintaxis:
public boolean equals(Object otherInstant)
Parámetros: Este método acepta un parámetro obligatorio otroInstante que es el otro instante a comparar, y no debe ser nulo.
Valor devuelto: este método devuelve un valor booleano de la siguiente manera:
- verdadero : si ambas instancias son iguales.
- false : si ambas instancias no son iguales.
Los siguientes programas ilustran el método Instant.equals():
Programa 1: Cuando ambas instancias son iguales
// Java program to demonstrate // Instant.equals() method import java.time.*; public class GFG { public static void main(String[] args) { // create two instance objects Instant instant1 = Instant.parse("2018-10-20T16:55:30.00Z"); Instant instant2 = Instant.parse("2018-10-20T16:55:30.00Z"); // print Instant Values System.out.println("Instant1: " + instant1); System.out.println("Instant2: " + instant2); // compare both instant boolean value = instant1.equals(instant2); // print results System.out.println("Are both instants are equal: " + value); } }
Instant1: 2018-10-20T16:55:30Z Instant2: 2018-10-20T16:55:30Z Are both instants are equal: true
Programa 2: Cuando ambas instancias no son iguales
// Java program to demonstrate // Instant.equals() method import java.time.*; public class GFG { public static void main(String[] args) { // create two instance objects Instant instant1 = Instant.parse("2018-10-20T16:55:30.00Z"); Instant instant2 = Instant.parse("2011-10-20T16:55:30.00Z"); // print Instant Values System.out.println("Instant1: " + instant1); System.out.println("Instant2: " + instant2); // compare both instant boolean value = instant1.equals(instant2); // print results System.out.println("Are both instants are equal: " + value); } }
Instant1: 2018-10-20T16:55:30Z Instant2: 2011-10-20T16:55:30Z Are both instants are equal: false
Referencia: https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#equals(java.lang.Object)
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA