Java中的 DecimalFormat setCurrency() 方法
setCurrency()方法是Java中Java .text.DecimalFomrat类的内置方法,用于设置此 DecimalFormat 实例的货币,该实例将用于格式化数字。
语法:
public void setCurrency(Currency currency)
参数:该函数接受单个参数货币,它是用于格式化数字的货币。
返回值:该函数不返回任何值。
下面是上述函数的实现:
程序 1 :
// Java program to illustrate the
// setCurrency() method
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
public class Main {
public static void main(String[] args)
{
// Create the DecimalFormat Instance
DecimalFormat deciFormat = new DecimalFormat();
// Set the Currency
deciFormat.setCurrency(Currency.getInstance(Locale.GERMANY));
// Print the current Currency value
System.out.println(deciFormat.getCurrency());
}
}
输出:
EUR
方案二:
// Java program to illustrate the
// setCurrency() method
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
public class Main {
public static void main(String[] args)
{
// Create the DecimalFormat Instance
DecimalFormat deciFormat = new DecimalFormat();
// Set the Currency
deciFormat.setCurrency(Currency.getInstance(Locale.CANADA));
// Print the current Currency value
System.out.println(deciFormat.getCurrency());
}
}
输出:
CAD
参考:https: Java Java.util.Currency)