getCurrency()方法是Java中java.text.DecimalFomrat類的內置方法,用於返回使用該貨幣格式化貨幣值時使用的貨幣。如果沒有要確定的有效貨幣或以前沒有設置貨幣,則可以為null。
用法:
public Currency getCurrency()
參數:該函數不接受單個參數。
返回值:該函數返回格式化貨幣值時使用的貨幣。
錯誤和異常:當數字格式類未實現貨幣格式設置時,該函數將引發UnsupportedOperationException
下麵是上述函數的實現:
程序1:
// Java program to illustrate the
// getCurrency() method
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
public class Main {
public static void main(String[] args)
{
// Get the Currency Instance
DecimalFormat deciFormat = new DecimalFormat();
// Stores the values
String values = deciFormat.getCurrency()
.getDisplayName();
// Prints the currency
System.out.println(values);
}
}
輸出:
US Dollar
程序2:
// Java program to illustrate the
// getCurrency() method
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
public class Main {
public static void main(String[] args)
{
// Get the Currency Instance
DecimalFormat deciFormat = new DecimalFormat();
// Sets the currency to Canadian Dollar
deciFormat.setCurrency(
Currency.getInstance(
Locale.CANADA));
// Stores the values
String values = deciFormat.getCurrency()
.getDisplayName();
// Prints the currency
System.out.println(values);
}
}
輸出:
Canadian Dollar
參考: https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#getCurrency()
相關用法
- Java NumberFormat getCurrency()用法及代碼示例
- Java DecimalFormatSymbols getCurrency()用法及代碼示例
- Java DecimalFormat getRoundingMode()用法及代碼示例
- Java DecimalFormat getMinimumIntegerDigits()用法及代碼示例
- Java DecimalFormat getMaximumIntegerDigits()用法及代碼示例
- Java DecimalFormat getMinimumFractionDigits()用法及代碼示例
- Java DecimalFormat setMaximumIntegerDigits()用法及代碼示例
- Java DecimalFormat toLocalizedPattern()用法及代碼示例
- Java DecimalFormat toPattern()用法及代碼示例
- Java DecimalFormat getMultiplier()用法及代碼示例
- Java DecimalFormat getPositiveSuffix()用法及代碼示例
- Java DecimalFormat getPositivePrefix()用法及代碼示例
- Java DecimalFormat hashCode()用法及代碼示例
- Java DecimalFormat setMinimumIntegerDigits()用法及代碼示例
- Java DecimalFormat getNegativeSuffix()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 DecimalFormat getCurrency() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。