Java中的 DecimalFormat getDecimalFormatSymbols() 方法
getDecimalFormatSymbols()方法是Java中Java .text.DecimalFomrat类的内置方法,用于获取此 DecimalFormat 实例的十进制格式符号的副本。这些符号是固定的,用户不能更改。
语法:
public DecimalFormatSymbols getDecimalFormatSymbols()
参数:该函数不接受任何参数。
返回值:该函数返回此 DecimalFormat 实例的 DecimalFomratSymbols 的副本。
下面是上述函数的实现:
程序 1 :
Java
// Java program to illustrate the
// getDecimalFormatSymbols() method
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
public class Main {
public static void main(String[] args)
{
// Get the DecimalFormat Instance
DecimalFormat deciFormat = new DecimalFormat();
// Print the DecimalFormatSymbols
System.out.println(deciFormat.getDecimalFormatSymbols());
}
}
Java
// Java program to illustrate the
// getDecimalFormatSymbols() 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));
// Print the DecimalFormatSymbols
System.out.println(deciFormat.getDecimalFormatSymbols());
}
}
输出:
java.text.DecimalFormatSymbols@1073a
方案二:
Java
// Java program to illustrate the
// getDecimalFormatSymbols() 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));
// Print the DecimalFormatSymbols
System.out.println(deciFormat.getDecimalFormatSymbols());
}
}
输出:
java.text.DecimalFormatSymbols@1073a
参考:https: Java/text/DecimalFormat.html#getDecimalFormatSymbols()