当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。