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

Related Articles

DecimalStyle ofDefaultLocale() method in Java with Example

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

The ofDefaultLocale() method of java.time.format.DecimalStyle class in Java is used to get the DecimalStyle instance for the default FORMAT locale.

Syntax:

public static DecimalStyle ofDefaultLocale()

Parameter: This method do not accept any parameter.

Return Value: This method returns a DecimalStyle instance for the default FORMAT locale.

Exception: This method do not throw any Exception.

Program:




// Java program to demonstrate
// the above method
  
import java.time.format.*;
import java.util.*;
  
public class DecimalStyleDemo {
    public static void main(String[] args)
    {
  
        DecimalStyle ds
            = DecimalStyle.STANDARD;
  
        System.out.println("DecimalStyle for "
                           + "default FORMAT locale: "
                           + ds.ofDefaultLocale());
    }
}

Output:

DecimalStyle for default FORMAT locale: DecimalStyle[0+-.]

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/format/DecimalStyle.html#ofDefaultLocale()

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