El método computeFields() en la clase Calendar se usa para la operación de conversión del valor de tiempo actual en milisegundos a valores de campo de calendario mencionados en los campos [].
Nota: Esto permite sincronizar la nueva hora establecida para el objeto de calendario con los valores del campo de calendario.
Sintaxis:
protected abstract void computeFields()
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 computeFields() de la clase Calendario:
Ejemplo 1:
// Java Code to illustrate // computeFields() 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 // computeFields() calndr.set(GregorianCalendar.YEAR, 2016); calndr.computeFields(); // Displaying the current date System.out.println("The recent" + " date is: " + calndr.getTime()); } }
The Current date is: Wed Feb 13 16:15:15 UTC 2019 The recent date is: Wed Feb 13 16:15:15 UTC 2019
Ejemplo 2:
// Java Code to illustrate // computeFields() 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 // computeFields() calndr.set(GregorianCalendar.YEAR, 2000); calndr.computeFields(); // Displaying the current date System.out.println("The recent" + " date is: " + calndr.getTime()); } }
The Current date is: Wed Feb 13 16:15:18 UTC 2019 The recent date is: Wed Feb 13 16:15:18 UTC 2019
Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/Calendar.html#computeFields()
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