📌  相关文章
📜  Java中的 DecimalFormatSymbols getZeroDigit() 和示例

📅  最后修改于: 2022-05-13 01:54:36.622000             🧑  作者: Mango

Java中的 DecimalFormatSymbols getZeroDigit() 和示例

Java中的Java .text.DecimalFormatSymbols 类getZeroDigit()方法用于获取用于表示此DecimalFormatSymbols 的Locale 的零的字符。此方法返回该区域设置的零字符。

句法:

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–