Java 中的 DecimalFormat setCurrency()方法
原文:https://www . geesforgeks . org/decimal format-set currency-method-in-Java/
setCurrency() 方法是 java 中Java . text . decimal FORMAT类的内置方法,用于为这个将用于格式化数字的 DecimalFormat 实例设置 Currency。
语法 :
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
版权属于:月萌API www.moonapi.com,转载请注明出处