isAfter() método de la clase MonthDay utilizado para verificar si este MonthDay es posterior al MonthDay pasado como parámetro o no. Este método devuelve un valor booleano que muestra lo mismo.
Sintaxis:
public boolean isAfter(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 posterior al día del mes especificado; de lo contrario, devuelve falso.
Los siguientes programas ilustran el método isAfter():
Programa 1:
// Java program to demonstrate // MonthDay.isAfter() 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 isAfter() method boolean value = month.isAfter(othermonth); // print instance System.out.println("monthday:" + month + " is after monthday:" + othermonth + " = " + value); } }
monthday:--10-12 is after monthday:--11-12 = false
Programa 2:
// Java program to demonstrate // MonthDay.isAfter() 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 isAfter() method boolean value = month.isAfter(othermonth); // print instance System.out.println("monthday:" + month + " is after monthday:" + othermonth + " = " + value); } }
monthday:--10-12 is after monthday:--09-12 = true
Referencias: https://docs.oracle.com/javase/10/docs/api/java/time/MonthDay.html#isAfter(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