Método getSymbol de moneda en Java con ejemplos

El método getSymbol() de la clase Moneda en Java se utiliza para recuperar el símbolo oficial del código de moneda.

Sintaxis:

CURRENCY.getSymbol()

Parámetros: este método no acepta ningún parámetro.

Valor devuelto: este método devuelve el símbolo oficial 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.

Los siguientes programas ilustran el funcionamiento del método getSymbol():

Programa 1:

// Java Code to illustrate getSymbol() 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 symbol of the currency
        String currency_symbol
            = curr_ency.getSymbol();
        System.out.println("Symbol for the currency of India is: "
                           + currency_symbol);
    }
}
Producción:

Symbol for the currency of India is: INR

Programa 2:

// Java Code to illustrate getSymbol() 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("USD");
  
        // Getting the symbol of the currency
        String currency_symbol
            = curr_ency.getSymbol();
        System.out.println("Symbol for the currency of USA is: "
                           + currency_symbol);
    }
}
Producción:

Symbol for the currency of USA is: $

Programa 3: para un código de moneda no válido.

// Java Code to illustrate getSymbol() 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("USDA");
  
            // Getting the symbol of the currency
            String currency_symbol
                = curr_ency.getSymbol();
            System.out.println("Symbol for the currency of USA is: "
                               + currency_symbol);
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}
Producción:

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *