El método complete() en la clase Calendar se usa para completar los campos no establecidos de los campos del calendario. Sigue el siguiente proceso de finalización:
- Al principio, si no se ha calculado el valor de la hora, se llama al método computeTime() para calcularlo a partir de los valores de los campos del calendario.
- En segundo lugar, para calcular todos los valores de los campos del calendario se utiliza el método computeFields().
Sintaxis:
protected void complete()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: el método no devuelve ningún valor.
Los siguientes programas ilustran el funcionamiento del método complete() de la clase Calendario:
Ejemplo 1:
// Java Code to illustrate // complete() Method import java.util.*; public class CalendarClassDemo extends GregorianCalendar { public static void main(String args[]) { // Creating calendar object CalendarClassDemo calndr = new CalendarClassDemo(); // Displaying the current date System.out.println("The Current " + "date is: " + calndr.getTime()); // Clearing the calendar calndr.clear(); // Set a new year and call // complete() calndr.set(GregorianCalendar.YEAR, 2008); calndr.complete(); // Displaying the current date System.out.println("The new" + " date is: " + calndr.getTime()); } }
Producción:
The Current date is: Wed Feb 13 15:39:33 UTC 2019 The new date is: Tue Jan 01 00:00:00 UTC 2008
Ejemplo 2:
// Java Code to illustrate // complete() Method import java.util.*; public class CalendarClassDemo extends GregorianCalendar { public static void main(String args[]) { // Creating calendar object CalendarClassDemo calndr = new CalendarClassDemo(); // Displaying the current date System.out.println("The Current " + "date is: " + calndr.getTime()); // Clearing the calendar calndr.clear(); // Set a new year and call // complete() calndr.set(GregorianCalendar.YEAR, 1996); calndr.complete(); // Displaying the current date System.out.println("The new" + " date is: " + calndr.getTime()); } }
Producción:
The Current date is: Wed Feb 13 15:39:36 UTC 2019 The new date is: Mon Jan 01 00:00:00 UTC 1996
Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/Calendar.html#complete()
Publicación traducida automáticamente
Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA