Java DecimalFormatSymbols getZeroDigit()方法及示例
Java中 java.text .DecimalFormatSymbols类 的 getZeroDigit() 方法是用来获取该DecimalFormatSymbols的Locale中用来代表0的字符。该方法返回该Locale的0的字符。
语法。
public char getZeroDigit()
参数。此方法不接受任何参数。
返回值。该方法返回该DecimalFormatSymbols的一个零。
异常。此方法不抛出任何异常。
程序。
// 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("Character used for zero: "
+ dfs.getZeroDigit());
}
}
输出:
Character used for zero: 0
参考资料: https://docs.oracle.com/javase/9/docs/api/java/text/DecimalFormatSymbols.html#getZeroDigitDigit-