Java 中带有零位数()方法的十进制样式,示例
原文:https://www . geesforgeks . org/decimal style-with zero digital-in-Java-method-with-example/
java 中Java . time . format . DecimalStyle 类的 withZeroDigit() 方法用于为这个 decimal style 的 Locale 设置用来表示零的字符。此方法将字符作为参数,并返回带有更新的负号字符的十进制样式实例。
语法:
public void withZeroDigit(char zeroDigit)
参数:该方法接受零位数作为参数,该参数是将用于表示该十进制样式的零的字符。
返回值:此方法返回带有更新负号字符的十进制样式实例。
异常:这个方法不抛出任何异常。
程序:
// 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: *
版权属于:月萌API www.moonapi.com,转载请注明出处