Java中的java.text.DecimalFormatSymbols类的setPerMill(char)方法用于设置用于表示此DdecimalFormatSymbols的语言环境的每毫秒符号的字符。此方法将用于表示每毫秒符号的字符作为参数。
用法:
public void setPerMill(char perMill)
参数:此方法接受perMill作为参数,该参数将用作表示此DdecimalFormatSymbols的毫秒符号的字符。
返回值:此方法不设置任何内容。
异常:此方法不引发任何异常。
程序:
// Java program to demonstrate
// the above method
import java.text.*;
import java.util.*;
public class DecimalFormatSymbolsDemo {
public static void main(String[] args)
{
DecimalFormatSymbols dfs
= new DecimalFormatSymbols();
System.out.println("Current Character used"
+ " for per milli sign: "
+ dfs.getPerMill());
char perMill = '*';
dfs.setPerMill(perMill);
System.out.println("Updated Character used"
+ " for per milli sign: "
+ dfs.getPerMill());
}
}
输出:
Current Character used for per milli sign: ? Updated Character used for per milli sign: *
参考: https://docs.oracle.com/javase/9/docs/api/java/text/DecimalFormatSymbols.html#setPerMill-char-
相关用法
- Java DecimalFormatSymbols setExponentSeparator()用法及代码示例
- Java DecimalFormatSymbols setZeroDigit()用法及代码示例
- Java DecimalFormatSymbols setGroupingSeparator()用法及代码示例
- Java DecimalFormatSymbols getPatternSeparator()用法及代码示例
- Java DecimalFormatSymbols toString()用法及代码示例
- Java DecimalFormatSymbols getDecimalSeparator()用法及代码示例
- Java DecimalFormatSymbols getInternationalCurrencySymbol()用法及代码示例
- Java DecimalFormatSymbols getCurrencySymbol()用法及代码示例
- Java DecimalFormatSymbols getGroupingSeparator()用法及代码示例
- Java DecimalFormatSymbols getInstance()用法及代码示例
- Java DecimalFormatSymbols hashCode()用法及代码示例
- Java DecimalFormatSymbols getCurrency()用法及代码示例
- Java DecimalFormatSymbols clone()用法及代码示例
- Java DecimalFormatSymbols getMinusSign()用法及代码示例
- Java DecimalFormatSymbols getExponentSeparator()用法及代码示例
注:本文由纯净天空筛选整理自srinam大神的英文原创作品 DecimalFormatSymbols setPerMill(char) method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。