El método toString() de la clase SimpleTimeZone se usa para obtener una representación de string de esta zona horaria.
Sintaxis:
public String toString()
Parámetros: La función no acepta ningún parámetro.
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 java.util.SimpleTimeZone.toString() import java.util.*; public class GFG { public static void main(String[] args) { // create simple time zone object SimpleTimeZone obj = new SimpleTimeZone(700, "US"); // get string value of time zone // and print the result System.out.println("String value is = " + obj.toString()); } }
Producción:
String value is = java.util.SimpleTimeZone[ id=US, offset=700, 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]
Programa 2:
// program to demonstrate the // function java.util.SimpleTimeZone.toString() import java.util.*; public class GFG { public static void main(String[] args) { // create simple time zone object SimpleTimeZone obj = new SimpleTimeZone(800, "US"); // get string value of time zone // and print the result System.out.println("String value is = " + obj.toString()); } }
Producción:
String value is = java.util.SimpleTimeZone[ id=US, offset=800, 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]
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