Java中的 DateFormat clone() 方法及示例
DateFormat 类的clone()方法用于创建此 DateFormat 的副本。它创建此 DateFormat 的另一个副本。
句法:
public Object clone()
参数:该方法不带任何参数。
返回值:该方法返回 DateFormat 的副本。
下面的程序说明了 DateFormat 的 clone() 方法的工作:
示例 1:
// Java to illustrate clone() method
import java.text.*;
import java.util.*;
public class DateFormat_Demo {
public static void main(String[] args)
{
// Initializing DateFormat
DateFormat DFormat
= DateFormat.getDateTimeInstance();
// Displaying the formats
Date date = new Date();
String str_Date1
= DFormat.format(date);
System.out.println("The Original: "
+ (str_Date1));
// Using clone()
System.out.println("Is the clone equal? "
+ DFormat.clone()
.equals(DFormat));
}
}
输出:
The Original: Mar 27, 2019 10:09:48 AM
Is the clone equal? true
示例 2:
// Java to illustrate clone() method
import java.text.*;
import java.util.*;
public class DateFormat_Demo {
public static void main(String[] args)
{
// Initializing DateFormat
DateFormat DFormat
= new SimpleDateFormat("MM/dd/yyyy");
// Displaying the formats
Date date = new Date();
String str_Date1
= DFormat.format(date);
System.out.println("The Original: "
+ (str_Date1));
// Using clone()
System.out.println("Is the clone equal? "
+ DFormat.clone()
.equals(DFormat));
}
}
输出:
The Original: 03/27/2019
Is the clone equal? true
参考: https: Java/text/DateFormat.html#clone()