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


Java DecimalStyle withZeroDigit()用法及代碼示例


Java中java.time.format.DecimalStyle類的withZeroDigit()方法用於設置用於表示此DecimalStyle的語言環境為零的字符。此方法將字符作為參數,並返回帶有更新的負號字符的DecimalStyle實例。

用法:

public void withZeroDigit(char zeroDigit)

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


返回值:此方法返回具有更新的負號字符的DecimalStyle實例。

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

程序:

// Java program to demonstrate 
// the above method 
  
import java.time.format.*; 
import java.util.*; 
  
public class DecimalStyleDemo { 
    public static void main(String[] args) 
    { 
  
        DecimalStyle ds 
            = DecimalStyle.STANDARD; 
  
        System.out.println("Current Character"
                           + " used for zero: "
                           + ds.getZeroDigit()); 
  
        char zeroDigit = '*'; 
  
        ds = ds.withZeroDigit(zeroDigit); 
  
        System.out.println("Updated Character "
                           + "used for zero: "
                           + ds.getZeroDigit()); 
    } 
}
輸出:
Current Character used for zero: 0
Updated Character used for zero: *

參考: https://docs.oracle.com/javase/10/docs/api/java/time/format/DecimalStyle.html#withZeroDigit(char)



相關用法


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