El método getDefaultFractionDigits() de la clase de moneda en Java se utiliza para recuperar o conocer los dígitos de fracción de esta moneda, que es el valor predeterminado establecido por el código de moneda ISO 4217.
Sintaxis:
public int getDefaultFractionDigits()
Parámetros: este método no acepta ningún parámetro.
Valor devuelto: este método devuelve un valor entero que son los dígitos de fracción predeterminados de la moneda.
Excepciones: el método arroja un error de tiempo de ejecución si se llama a un código no válido.
El siguiente programa ilustra el funcionamiento del método getDefaultFractionDigits():
Programa 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); } }
INR's fractions digits are: 2
Programa 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); } }
Jordan's fractions digits are: 3
Programa 3: para un código de moneda no válido.
// 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); } } }
java.lang.IllegalArgumentException
Publicación traducida automáticamente
Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA