Método YearMonth isAfter() en Java con ejemplos

El método isAfter() de la clase Year en Java se usa para verificar si este objeto YearMonth actual es posterior al YearMonth especificado como parámetro para este método.

Sintaxis :

public boolean isAfter(Year otherYearMonth)

Parámetro : Acepta un único parámetro otroMesAño con el que se va a comparar el objeto MesAño actual.

Valor devuelto : Devuelve un valor booleano True si el valor de este objeto YearMonth es posterior al valor del objeto YearMonth especificado como parámetro para el método; de lo contrario, devuelve False.

Los siguientes programas ilustran el método YearMonth.isAfter() en Java:

Programa 1 :

// Program to illustrate the isAfter() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Create first Year object
        YearMonth yearMonth1
            = YearMonth.of(2018, 3);
  
        // Create second Year object
        YearMonth yearMonth2
            = YearMonth.of(1997, 4);
  
        // Check if this year-month object's value is
        // after the specified Year-month or not
        System.out.println(yearMonth1
                               .isAfter(yearMonth2));
    }
}

Programa 2 :

// Program to illustrate the isAfter() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Create first Year object
        YearMonth yearMonth1
            = YearMonth.of(1997, 3);
  
        // Create second Year object
        YearMonth yearMonth2
            = YearMonth.of(2018, 4);
  
        // Check if this year-month object's value is
        // after the specified Year-month or not
        System.out.println(yearMonth1
                               .isAfter(yearMonth2));
    }
}

Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#isAfter-java.time.YearMonth-

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 *