Java Currency getNumericCode() 方法



描述

Java Currency getNumericCode() 方法获取此货币的 ISO 4217 数字代码。

声明

以下是 java.util.Currency.getNumericCode() 方法的声明

public int getNumericCode()

参数

返回值

此方法返回此货币的 ISO 4217 数字代码。

异常

获取 EUR 货币的数字代码示例

以下示例演示了 Java Currency getNumericCode() 方法在 EUR 货币上的用法。我们首先使用 EUR 作为货币代码创建了一个货币对象,然后打印其数字代码。

package com.tutorialspoint;

import java.util.Currency;

public class CurrencyDemo {
   public static void main(String args[]) {

      // create a currency with EUR code
      Currency curr = Currency.getInstance("EUR");

      System.out.println("Numeric Code for EUR = " + curr.getNumericCode());
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Numeric Code for EUR = 978

获取 USD 货币的数字代码示例

以下示例演示了 Java Currency getNumericCode() 方法在 USD 货币上的用法。我们首先使用 USD 作为货币代码创建了一个货币对象,然后打印其数字代码。

package com.tutorialspoint;

import java.util.Currency;

public class CurrencyDemo {
   public static void main(String args[]) {

      // create a currency with USD code
      Currency curr = Currency.getInstance("USD");

      System.out.println("Numeric Code for USD = " + curr.getNumericCode());
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Numeric Code for USD = 840

获取 INR 货币的数字代码示例

以下示例演示了 Java Currency getNumericCode() 方法在 INR 货币上的用法。我们首先使用 INR 作为货币代码创建了一个货币对象,然后打印其数字代码。

package com.tutorialspoint;

import java.util.Currency;

public class CurrencyDemo {
   public static void main(String args[]) {

      // create a currency with INR code
      Currency curr = Currency.getInstance("INR");

      System.out.println("Numeric Code for INR = " + curr.getNumericCode());
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Numeric Code for INR = 356
java_util_currency.htm
广告