El método setFirstDayOfWeek(int day_val) en la clase Calendar se usa para establecer el primer día de la semana usando day_val en este Calendario.
Sintaxis:
public void set(int day_val)
Parámetros: El método toma un parámetro day_val de tipo entero y se refiere al primer día de la semana.
Valor devuelto: el método no devuelve ningún valor.
Los siguientes programas ilustran el funcionamiento del método setFirstDayOfWeek() de la clase Calendario:
Ejemplo 1:
// Java code to illustrate // setFirstDayOfWeek() method import java.util.*; public class Calendar_Demo { public static void main(String args[]) { // Creating calendar object Calendar calndr = Calendar.getInstance(); // Displaying first day of the week int first_day = calndr.getFirstDayOfWeek(); System.out.println("The Current" + " First day of the week: " + first_day); // Changing the first day of week calndr.setFirstDayOfWeek(Calendar.THURSDAY); // Displaying the alternate day first_day = calndr.getFirstDayOfWeek(); System.out.println("The new first" + " day of the week: " + first_day); } }
Producción:
The Current First day of the week: 1 The new first day of the week: 5
Ejemplo 2:
// Java code to illustrate // setFirstDayOfWeek() method import java.util.*; public class Calendar_Demo { public static void main(String args[]) { // Creating calendar object Calendar calndr = new GregorianCalendar(2018, 6, 10); // Displaying first day of the week int first_day = calndr.getFirstDayOfWeek(); System.out.println("The" + " First day of the week: " + first_day); // Changing the first day of week calndr.setFirstDayOfWeek(Calendar.MONDAY); // Displaying the alternate day first_day = calndr.getFirstDayOfWeek(); System.out.println("The new first" + " day of the week: " + first_day); } }
Producción:
The First day of the week: 1 The new first day of the week: 2
Referencia: https://docs.oracle.com/javase/8/docs/api/java/util/Calendar.html#setFirstDayOfWeek-int-
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