SimpleDateFormat clone() Method in Java with Examples

Last Updated : 30 Jan, 2019
The clone() Method of SimpleDateFormat class is used to create a copy of the SImpleDateFormat. It creates another copy of this SimpleDateFormat. Syntax:
public Object clone()
Parameters: The method does not take any parameters. Return Value: The method returns a copy of the SimpleDateFormat. Below programs illustrate the working of clone() Method of SimpleDateFormat: Example 1: Java
// Java to illustrate clone() method

import java.text.*;
import java.util.*;

public class SimpleDateFormat_Demo {
    public static void main(String[] args)
        throws InterruptedException
    {
        // Initializing SimpleDateFormat
        SimpleDateFormat SDFormat
            = new SimpleDateFormat(
                "MM/dd/yyyy");

        // Displaying the formats
        Date date = new Date();
        String str_Date1
            = SDFormat.format(date);
        System.out.println("The Original: "
                           + (str_Date1));

        // Using clone()
        System.out.println("Is the clone equal? "
                           + SDFormat
                                 .clone()
                                 .equals(SDFormat));
    }
}
Output:
The Original: 01/30/2019
Is the clone equal? true
Comment