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
程序2:
// 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
相关用法
- Java DecimalFormatSymbols setCurrency()用法及代码示例
- Java NumberFormat setCurrency()用法及代码示例
- Java DecimalFormat applyPattern()用法及代码示例
- Java DecimalFormat clone()用法及代码示例
- Java DecimalFormat hashCode()用法及代码示例
- Java DecimalFormat applyLocalizedPattern()用法及代码示例
- Java DecimalFormat getNegativePrefix()用法及代码示例
- Java DecimalFormat setDecimalSeparatorAlwaysShown()用法及代码示例
- Java DecimalFormat setNegativePrefix()用法及代码示例
- Java DecimalFormat getRoundingMode()用法及代码示例
- Java DecimalFormat isParseBigDecimal()用法及代码示例
- Java DecimalFormat setMaximumFractionDigits()用法及代码示例
- Java DecimalFormat getMaximumFractionDigits()用法及代码示例
- Java DecimalFormat getMinimumFractionDigits()用法及代码示例
- Java DecimalFormat setMaximumIntegerDigits()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 DecimalFormat setCurrency() method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。