Thursday, February 12, 2026
HomeLanguagesJavaDecimalFormat getMaximumFractionDigits() method in Java

DecimalFormat getMaximumFractionDigits() method in Java

The getMaximumFractionDigits() method is a built-in method of the java.text.DecimalFomrat class in Java and is used to get the maximum number of digits allowed in the fractional or the decimal part of a Number.

Syntax:

public int getMaximumFractionDigits()

Parameters: The function does not accepts any parameter.

Return Value: The function returns the maximum number of digits allowed in the decimal part of a number.

Below is the implementation of the above function:

Program 1:




// Java program to illustrate the
// getMaximumFractionDigits() method
  
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
  
public class Main {
    public static void main(String[] args)
    {
  
        // Create the DecimalFormat Instance
        DecimalFormat deciFormat = new DecimalFormat();
  
        // Print the Grouping Size
        System.out.println(deciFormat.getMaximumFractionDigits());
    }
}


Output:

3

Program 2:




// Java program to illustrate the
// getMaximumFractionDigits() method
  
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
  
public class Main {
    public static void main(String[] args)
    {
  
        // Create the DecimalFormat Instance
        DecimalFormat deciFormat = new DecimalFormat();
        deciFormat.applyPattern("##.##");
  
        // Print the Grouping Size
        System.out.println(deciFormat.getMaximumFractionDigits());
    }
}


Output:

2

Reference: https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#getMaximumFractionDigits()

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32497 POSTS0 COMMENTS
Milvus
128 POSTS0 COMMENTS
Nango Kala
6874 POSTS0 COMMENTS
Nicole Veronica
11996 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12090 POSTS0 COMMENTS
Shaida Kate Naidoo
7010 POSTS0 COMMENTS
Ted Musemwa
7246 POSTS0 COMMENTS
Thapelo Manthata
6959 POSTS0 COMMENTS
Umr Jansen
6950 POSTS0 COMMENTS