Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

DecimalFormatSymbols getInstance() method in Java with Examples

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The getInstance() method of java.text.DecimalFormatSymbols class in Java is used to get the DecimalFormatSymbols instance for the default Locale. This method is final and cannot be overridden or changed.

Syntax:

public static final
  DdecimalFormatSymbols getInstance()

Parameter: This method do not accept any parameter.

Return Value: This method returns an instance of the DdecimalFormatSymbols with the default Locale.

Exception: This method do not throw any Exception.

Program:




// Java program to demonstrate
// the above method
  
import java.text.*;
import java.util.*;
  
public class DecimalFormatSymbolsDemo {
    public static void main(String[] args)
    {
  
        DecimalFormatSymbols dfs
            = new DecimalFormatSymbols();
  
        System.out.println("DdecimalFormatSymbols"
                           + " with default Locale: "
                           + dfs.getInstance());
    }
}

Output:

DdecimalFormatSymbols with default Locale:
 java.text.DecimalFormatSymbols@1073a

Reference: https://docs.oracle.com/javase/9/docs/api/java/text/DecimalFormatSymbols.html#getInstance–

My Personal Notes arrow_drop_up
Last Updated : 30 Jul, 2019
Like Article
Save Article
Similar Reads
Related Tutorials