java.util.Calendar.after() es un método en la clase Calendar del paquete java.util. El método devuelve verdadero si la hora representada por este calendario es posterior a la hora representada por el objeto when . Si no es el caso, se devuelve falso .
Sintaxis:
public boolean after(Object when) Where, when is the Object that is to be compared.
A continuación se muestran algunos ejemplos para comprender mejor la implementación de la función Calendar.after():
Ejemplo 1 :
// Java code show the usage of // after() method of Calendar class import java.util.*; class GFG { // Driver code public static void main(String[] args) throws InterruptedException { // creating calendar object Calendar cal_obj1 = Calendar.getInstance(); // printing current date System.out.println("Time 1 : " + cal_obj1.getTime()); // creating Calendar object Calendar cal_obj2 = Calendar.getInstance(); // printing current date System.out.println("Time 2 : " + cal_obj2.getTime()); // checking if 1st date is after 2nd date // and printing the result System.out.println(cal_obj1.after(cal_obj2)); } }
Producción :
Time 1 : Thu Mar 01 09:26:04 UTC 2018 Time 2 : Thu Mar 01 09:26:04 UTC 2018 false
Ejemplo 2:
// Java code to show the usage of // after() method of Calendar class import java.util.*; class GFG { // Driver code public static void main(String[] args) { // creating calendar objects Calendar cal_obj1 = Calendar.getInstance(); Calendar cal_obj2 = Calendar.getInstance(); // displaying the current date System.out.println("Current date is : " + cal_obj1.getTime()); // changing year in cal_obj2 calendar cal_obj2.set(Calendar.YEAR, 2010); // check if calendar date is after current date System.out.println("Result : " + cal_obj1.after(cal_obj2)); } }
Producción :
Current date is : Thu Mar 01 09:27:19 UTC 2018 Result : true
Publicación traducida automáticamente
Artículo escrito por Sahil_Bansall y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA