Java中的 DecimalStyle withZeroDigit() 方法与示例
Java Java类的withZeroDigit()方法用于设置此 DecimalStyle 的 Locale 用于表示零的字符。此方法将字符作为参数并返回带有更新的负号字符的 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: Java/time/format/DecimalStyle.html#withZeroDigit(char)