當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java DecimalFormatSymbols setCurrency()用法及代碼示例


Java中的java.text.DecimalFormatSymbols類的setCurrency(Currency)方法用於設置此DecimalFormatSymbols的語言環境的貨幣。此方法將貨幣作為參數並進行設置。

用法:

public void setCurrency(Currency currency)

參數:此方法接受貨幣作為參數,這是將用來表示此DecimalFormatSymbols貨幣的貨幣。


返回值:此方法不設置任何內容。

異常:如果貨幣為null,則此方法引發NullPointerException。

程序:

// 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()); 
  
        Currency currency 
            = Currency.getInstance("INR"); 
  
        dfs.setCurrency(currency); 
  
        System.out.println("Updated currency: "
                           + dfs.getCurrency()); 
    } 
}
輸出:
Current currency: USD
Updated currency: INR

參考: https://docs.oracle.com/javase/9/docs/api/java/text/DecimalFormatSymbols.html#setCurrency-java.util.Currency-



相關用法


注:本文由純淨天空篩選整理自srinam大神的英文原創作品 DecimalFormatSymbols setCurrency() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。