Método MonthDay equals() en Java con ejemplos

El método equals() de la clase MonthDay en Java comprueba si este mes-día es igual a otro mes-día.

Sintaxis:

public boolean equals(Object obj)

Parámetro: Este método acepta un parámetro obj que especifica si este mes-día es igual a otro mes-día.

Devuelve: La función devuelve verdadero si esta es igual a la otra vez.

Los siguientes programas ilustran el método MonthDay.equals() :

Programa 1:

// Program to illustrate the equals() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        MonthDay tm1 = MonthDay.parse("--12-06");
  
        // Uses the function
        LocalDate dt1 = tm1.atYear(2018);
  
        // Parses the date
        MonthDay tm2 = MonthDay.parse("--12-06");
  
        // Uses the function
        LocalDate dt2 = tm2.atYear(2018);
  
        // Prints the date
        System.out.println(dt1.equals(dt2));
    }
}
Producción:

true

Programa 2:

// Program to illustrate the equals() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        MonthDay tm1 = MonthDay.parse("--10-06");
  
        // Uses the function
        LocalDate dt1 = tm1.atYear(2018);
  
        // Parses the date
        MonthDay tm2 = MonthDay.parse("--12-06");
  
        // Uses the function
        LocalDate dt2 = tm2.atYear(2018);
  
        // Prints the date
        System.out.println(dt1.equals(dt2));
    }
}
Producción:

false

Referencia: https://docs.oracle.com/javase/8/docs/api/java/time/MonthDay.html#equals-java.lang.Object-

Publicación traducida automáticamente

Artículo escrito por gopaldave y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *