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–
Please Login to comment...