Open In App
Related Articles

DecimalFormat clone() method in Java

Improve Article
Improve
Save Article
Save
Like Article
Like

The clone() Method of DecimalFormat class in Java is used to return a clone of this DecimalFormat instance. This method overrides the clone() method of NumberFormat class.

Syntax:

Object clone()

Parameters: The method does not takes any parameter.

Return Value: The method returns a clone of this DecimalFormat instance.

Below programs illustrate the working of clone() Method:

Program 1:




// Java program to illustrate the
// clone() method
  
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
  
public class Main {
    public static void main(String[] args)
    {
  
        // Create a DecimalFormat instance
        DecimalFormat deciFormat = new DecimalFormat();
  
        // Set Currency
        deciFormat.setCurrency(Currency.getInstance(Locale.GERMANY));
  
        System.out.println(deciFormat.clone());
    }
}


Output:

java.text.DecimalFormat@674dc

Program 2:




// Java program to illustrate the
// clone() method
  
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
  
public class Main {
    public static void main(String[] args)
    {
  
        // Create a DecimalFormat instance
        DecimalFormat deciFormat = new DecimalFormat();
  
        // Set Currency
        deciFormat.getCurrencyInstance();
  
        System.out.println(deciFormat.clone());
    }
}


Output:

java.text.DecimalFormat@674dc

Reference: https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#clone()


Feeling lost in the vast world of Backend Development? It's time for a change! Join our Java Backend Development - Live Course and embark on an exciting journey to master backend development efficiently and on schedule.
What We Offer:
  • Comprehensive Course
  • Expert Guidance for Efficient Learning
  • Hands-on Experience with Real-world Projects
  • Proven Track Record with 100,000+ Successful Geeks

Last Updated : 01 Apr, 2019
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials