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


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

程序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

參考: https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#setCurrency(java.util.Currency)



相關用法


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