clone(): This method is available in java.util.TimeZone class of Java.
Syntax:
Object java.util.TimeZone.clone()
This method creates a copy of this TimeZone.
Parameters: NA
Returns: a clone of this TimeZone.
Exceptions: NA
Approach
Java
import java.util.SimpleTimeZone;import java.util.TimeZone;public class TimeZoneclone {public static void main(String[] args) {TimeZone timeZone = new SimpleTimeZone(100, "US");System.out.println(timeZone.clone());}}
Output:
java.util.SimpleTimeZone[id=US,offset=100,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]
No comments:
Post a Comment