El método setStartYear() de la clase SimpleTimeZone se utiliza para establecer el año de inicio del horario de verano.
Sintaxis:
public void setStartYear(int year)
Parámetros: la función acepta un año de parámetro único que especifica el año de inicio del horario de verano.
Valor de retorno: el método no tiene valor de retorno.
Excepción: la función no lanza ninguna excepción.
El siguiente programa demuestra la función mencionada anteriormente:
Programa 1:
// program to demonstrate the // function SimpleTimeZone.setStartYear() import java.util.*; public class GFG { public static void main(String[] args) { // create simple time zone object SimpleTimeZone obj = new SimpleTimeZone(500, "US"); // printing System.out.println("SimpleTimeZone: " + obj); // setting start year obj.setStartYear(2000); System.out.println("\nStartYear " + "set to 2000\n"); // printing the final value System.out.println("SimpleTimeZone: " + obj); } }
Producción:
SimpleTimeZone: java.util.SimpleTimeZone[ id=US, offset=500, dstSavings=3600000, useDaylight=false, startYear=0, startMode=0, startMonth=0, startDay=0, startDayOfWeek=0, startTime=0, startTimeMode=0, endMode=0, endMonth=0, endDay=0, endDayOfWeek=0, endTime=0, endTimeMode=0] StartYear set to 2000 SimpleTimeZone: java.util.SimpleTimeZone[ id=US, offset=500, dstSavings=3600000, useDaylight=false, startYear=2000, startMode=0, startMonth=0, startDay=0, startDayOfWeek=0, startTime=0, startTimeMode=0, endMode=0, endMonth=0, endDay=0, endDayOfWeek=0, endTime=0, endTimeMode=0]
Programa 2:
// program to demonstrate the // function SimpleTimeZone.setStartYear() import java.util.*; public class GFG { public static void main(String[] args) { // create simple time zone object SimpleTimeZone obj = new SimpleTimeZone(620, "US"); // printing System.out.println("SimpleTimeZone: " + obj); // setting start year obj.setStartYear(2018); System.out.println("\nStartYear " + "set to 2018\n"); // printing the final value System.out.println("SimpleTimeZone: " + obj); } }
Producción:
SimpleTimeZone: java.util.SimpleTimeZone[ id=US, offset=620, dstSavings=3600000, useDaylight=false, startYear=0, startMode=0, startMonth=0, startDay=0, startDayOfWeek=0, startTime=0, startTimeMode=0, endMode=0, endMonth=0, endDay=0, endDayOfWeek=0, endTime=0, endTimeMode=0] StartYear set to 2018 SimpleTimeZone: java.util.SimpleTimeZone[ id=US, offset=620, dstSavings=3600000, useDaylight=false, startYear=2018, startMode=0, startMonth=0, startDay=0, startDayOfWeek=0, startTime=0, startTimeMode=0, endMode=0, endMonth=0, endDay=0, endDayOfWeek=0, endTime=0, endTimeMode=0]
Publicación traducida automáticamente
Artículo escrito por Twinkl Bajaj y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA