Saturday, October 25, 2025
HomeLanguagesJavaSimpleTimeZone clone() method in Java with Examples

SimpleTimeZone clone() method in Java with Examples

The clone() method of SimpleTimeZone class returns a clone of this SimpleTimeZone instance.
Syntax:

public Object clone()

Parameters: The function does not accept any parameter.

Return Value: Returns a clone of this instance.

Exception: The function does not throws any exception.

Program below demonstrates the above mentioned function:

Program 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());
    }
}


Output:

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
]

Program 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());
    }
}


Output:

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
]
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS