📌  相关文章
📜  Java中的 DecimalFormatSymbols getCurrency() 方法及示例

📅  最后修改于: 2022-05-13 01:54:44.108000             🧑  作者: Mango

Java中的 DecimalFormatSymbols getCurrency() 方法及示例

Java中Java .text.DecimalFormatSymbols 类getCurrency()方法用于获取此DecimalFormatSymbols 的Locale 的货币。此方法返回货币。

句法:

public char getCurrency()

参数:此方法不接受任何参数。

返回值:此方法返回具有区域设置的 DecimalFormatSymbols 的货币。

异常:此方法不抛出任何异常。

程序:

// Java program to demonstrate
// the above method
  
import java.text.*;
import java.util.*;
  
public class DecimalFormatSymbolsDemo {
    public static void main(String[] args)
    {
  
        DecimalFormatSymbols dfs
            = new DecimalFormatSymbols();
  
        System.out.println("Current currency: "
                           + dfs.getCurrency());
    }
}
输出:
Current currency: USD

参考: https://docs.oracle.com/javase/9/docs/api/ Java/text/DecimalFormatSymbols.html#getCurrency–