📜  Java中的 NumberFormat clone() 方法及示例

📅  最后修改于: 2022-05-13 01:54:48.755000             🧑  作者: Mango

Java中的 NumberFormat clone() 方法及示例

clone()方法是Java.text.NumberFormat的内置方法,它返回一个定义任何给定实例的克隆的对象。

语法

public Object clone()

参数:该函数不接受任何参数。

返回值:该函数返回一个对象,该对象定义任何给定实例的克隆。

下面是上述函数的实现:

方案一:

// Java program to implement
// the above function
import java.text.NumberFormat;
  
public class Main {
    public static void main(String[] args)
        throws Exception
    {
  
        // Get the percent Instance
        NumberFormat nF
            = NumberFormat
                  .getPercentInstance();
  
        // Print the clone of this instance
        System.out.println(nF.clone());
    }
}
输出:
java.text.DecimalFormat@674dc

方案二:

// Java program to implement
// the above function
  
import java.text.NumberFormat;
  
public class Main {
    public static void main(String[] args)
        throws Exception
    {
  
        // Get the Currency Instance
        NumberFormat nF
            = NumberFormat
                  .getCurrencyInstance();
  
        // Print the clone of this instance
        System.out.println(nF.clone());
    }
}
输出:
java.text.DecimalFormat@67500

参考: https: Java/text/NumberFormat.html#clone()