Tuesday, June 16, 2026
HomeLanguagesJavaDecimalFormatSymbols getInstance() method in Java with Examples

DecimalFormatSymbols getInstance() method in Java with Examples

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–

RELATED ARTICLES

Most Popular

Dominic
32516 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6964 POSTS0 COMMENTS