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:
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
public class Main {
public static void main(String[] args)
{
DecimalFormat deciFormat = new DecimalFormat();
deciFormat.setCurrency(Currency.getInstance(Locale.GERMANY));
System.out.println(deciFormat.clone());
}
}
|
Output:
java.text.DecimalFormat@674dc
Program 2:
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
public class Main {
public static void main(String[] args)
{
DecimalFormat deciFormat = new DecimalFormat();
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