Java DecimalFormat setCurrency()方法

Java DecimalFormat setCurrency()方法

setCurrency() 方法是Java中 java.text.DecimalFomrat 类的一个内置方法,用于为这个DecimalFormat实例设置货币,该实例将用于格式化数字。

语法:

public void setCurrency(Currency 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)

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

Java DecimalFormat