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


Java DecimalFormatSymbols setZeroDigit()用法及代碼示例


Java中的java.text.DecimalFormatSymbols類的setZeroDigit(char)方法用於為該DdecimalFormatSymbols的語言環境設置用於表示零的字符。此方法將字符作為參數。

用法:

public void setZeroDigit(char zeroDigit)

參數:此方法接受zeroDigit作為參數,該參數將用於表示此DdecimalFormatSymbols的零。


返回值:此方法不設置任何內容。

異常:此方法不引發任何異常。

程序:

// 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("Current Character"
                           + " used for zero: "
                           + dfs.getZeroDigit()); 
  
        char zeroDigit = '*'; 
  
        dfs.setZeroDigit(zeroDigit); 
  
        System.out.println("Updated Character "
                           + "used for zero: "
                           + dfs.getZeroDigit()); 
    } 
}
輸出:
Current Character used for zero: 0
Updated Character used for zero: *

參考: https://docs.oracle.com/javase/9/docs/api/java/text/DecimalFormatSymbols.html#setZeroDigit-char-



相關用法


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