Open In App

Currency getDefaultFractionDigits() Method in Java with Examples

Last Updated : 27 Dec, 2018
Improve
Improve
Like Article
Like
Save
Share
Report

The getDefaultFractionDigits() Method of Currency class in Java is used to retrieve or know the fraction digits of this currency which is the default value set by the ISO 4217 currency code.

Syntax:

public int getDefaultFractionDigits()

Parameters: This method does not accept any parameters.

Return Value: This method returns an integer value which is the default fraction digits of the currency.

Exceptions: The method throws Runtime Error if an invalid code is called.

Below program illustrates the working of getDefaultFractionDigits() method:

Program 1:




// Java Code to illustrate
// getDefaultFractionDigits() method
  
import java.util.*;
  
public class Currency_Demo {
    public static void main(String[] args)
    {
  
        // Creating a currency with the code
        Currency curr_ency
            = Currency.getInstance("INR");
  
        // Getting the fraction digit of the currency
        int currency_fracdig
            = curr_ency.getDefaultFractionDigits();
        System.out.println("INR's fractions digits are: "
                           + currency_fracdig);
    }
}


Output:

INR's fractions digits are: 2

Program 2:




// Java Code to illustrate
// getDefaultFractionDigits() method
  
import java.util.*;
  
public class Currency_Demo {
    public static void main(String[] args)
    {
  
        // Creating a currency with the code
        Currency curr_ency
            = Currency.getInstance("JOD");
  
        // Getting the fraction digit of the currency
        int currency_fracdig
            = curr_ency.getDefaultFractionDigits();
        System.out.println("Jordan's fractions digits are: "
                           + currency_fracdig);
    }
}


Output:

Jordan's fractions digits are: 3

Program 3: For an invalid Currency Code.




// Java Code to illustrate
// getDefaultFractionDigits() method
  
import java.util.*;
  
public class Currency_Demo {
    public static void main(String[] args)
    {
  
        try {
            // Creating a currency with the code
            Currency curr_ency
                = Currency.getInstance("JODA");
  
            // Getting the fraction digit of the currency
            int currency_fracdig
                = curr_ency.getDefaultFractionDigits();
            System.out.println("Jordan's fractions digits are: "
                               + currency_fracdig);
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

java.lang.IllegalArgumentException


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads