带 PositiveSign()方法的十进制样式,示例为
原文:https://www . geeksforgeeks . org/decimal style-with positivesign-method-in-Java-with-example/
java 中Java . time . format . DecimalStyle 类的 withPositiveSign() 方法用于设置该 decimal style 的 Locale 中用于表示正号的字符。此方法将字符作为参数,并返回带有更新的负号字符的十进制样式实例。
语法:
public void withPositiveSign(char positiveSign)
参数:此方法接受 positiveSign 作为参数,该参数是将用于表示此十进制样式的正号的字符。
返回值:此方法返回带有更新负号字符的十进制样式实例。
异常:这个方法不抛出任何异常。
程序:
// 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 positive sign: "
+ ds.getPositiveSign());
char positiveSign = '*';
ds = ds.withPositiveSign(positiveSign);
System.out.println(
"Updated Character "
+ "used for positive sign: "
+ ds.getPositiveSign());
}
}
输出:
Current Character used for positive sign: +
Updated Character used for positive sign: *
参考:T2【https://docs . Oracle . com/javase/10/docs/API/Java/time/format/decimal style . html # with positivesign(char)
版权属于:月萌API www.moonapi.com,转载请注明出处