Java 中的十进制格式符号 getCurrency()方法,带示例
原文:https://www . geesforgeks . org/decimal format symbols-getcurrency-method-in-Java-with-examples/
的 getCurrency() 方法。Java 中的抽取格式符号类用于获取这个抽取格式符号的区域设置的货币。此方法返回货币。
语法:
public char getCurrency()
参数:此方法不接受任何参数。
返回值:该方法返回带有区域设置的十进制格式符号的货币。
异常:这个方法不抛出任何异常。
程序:
// 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–
版权属于:月萌API www.moonapi.com,转载请注明出处