Método MonthDay isBefore() en Java con ejemplos

isBefore() método de la clase MonthDay utilizado para verificar si este MonthDay es anterior al MonthDay pasado como parámetro o no. Este método devuelve un valor booleano que muestra lo mismo.

Sintaxis:

public boolean isBefore(MonthDay other)

Parámetros: Este método acepta otro parámetro que es el otro mes-día para comparar.

Valor devuelto: este método devuelve verdadero si este día del mes es anterior al día del mes especificado; de lo contrario, devuelve falso.

Los siguientes programas ilustran el método isBefore():
Programa 1:

// Java program to demonstrate
// MonthDay.isBefore() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
        // create a MonthDay object
        MonthDay month = MonthDay.parse("--10-12");
  
        // create other MonthDay object
        MonthDay othermonth = MonthDay.parse("--11-12");
  
        // apply isBefore() method
        boolean value = month.isBefore(othermonth);
  
        // print instance
        System.out.println("monthday:"
                           + month + " is before monthday:"
                           + othermonth + " = "
                           + value);
    }
}
Producción:

monthday:--10-12 is before monthday:--11-12 = true

Programa 2:

// Java program to demonstrate
// MonthDay.isBefore() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
        // create a MonthDay object
        MonthDay month = MonthDay.parse("--10-12");
  
        // create other MonthDay object
        MonthDay othermonth = MonthDay.parse("--09-12");
  
        // apply isBefore() method
        boolean value = month.isBefore(othermonth);
  
        // print instance
        System.out.println("monthday:"
                           + month + " is before monthday:"
                           + othermonth + " = "
                           + value);
    }
}
Producción:

monthday:--10-12 is before monthday:--09-12 = false

Referencias: https://docs.oracle.com/javase/10/docs/api/java/time/MonthDay.html#isBefore(java.time.MonthDay)

Publicación traducida automáticamente

Artículo escrito por AmanSingh2210 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 *