El método clone() de la clase SimpleTimeZone devuelve un clon de esta instancia de SimpleTimeZone.
Sintaxis:
public Object clone()
Parámetros: La función no acepta ningún parámetro.
Valor devuelto: Devuelve un clon de esta instancia.
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.clone() import java.util.SimpleTimeZone; public class GFG { public static void main(String[] args) { // create simple time zone object SimpleTimeZone obj = new SimpleTimeZone(520, "India"); // clone the object and print System.out.println("Clone object : " + obj.clone()); } }
Producción:
Clone object : java.util.SimpleTimeZone [ id=India, offset=520, 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.clone() import java.util.SimpleTimeZone; public class GFG { public static void main(String[] args) { // create simple time zone object SimpleTimeZone obj = new SimpleTimeZone(120, "India"); // clone the object and print System.out.println("Clone object : " + obj.clone()); } }
Producción:
Clone object : java.util.SimpleTimeZone [ id=India, offset=120, 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