Java中的java.text.DecimalFormatSymbols類的setExponentSeparator(String)方法用於設置String,該String表示此DecimalFormatSymbols的語言環境的指數分隔符。此方法將用於表示指數分隔符的String作為參數。
用法:
public void setExponentSeparator( String exponentSeparator)
參數:此方法接受exponentSeparator作為參數,該參數是將用於表示此DecimalFormatSymbols的指數分隔符的String。
返回值:此方法不設置任何內容。
異常:此方法不引發任何異常。
程序:
// 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 String used "
+ "for exponent separator: "
+ dfs.getExponentSeparator());
String exponentSeparator = "*";
dfs.setExponentSeparator(exponentSeparator);
System.out.println("Updated String used for"
+ " exponent separator: "
+ dfs.getExponentSeparator());
}
}
輸出:
Current String used for exponent separator: E Updated String used for exponent separator: *
相關用法
- Java DecimalFormatSymbols getCurrency()用法及代碼示例
- Java DecimalFormatSymbols equals()用法及代碼示例
- Java DecimalFormatSymbols setCurrency()用法及代碼示例
- Java DecimalFormatSymbols hashCode()用法及代碼示例
- Java DecimalFormatSymbols toString()用法及代碼示例
- Java DecimalFormatSymbols getInfinity()用法及代碼示例
- Java DecimalFormatSymbols getDigit()用法及代碼示例
- Java DecimalFormatSymbols getAvailableLocales()用法及代碼示例
- Java DecimalFormatSymbols getMonetaryDecimalSeparator()用法及代碼示例
- Java DecimalFormatSymbols getCurrencySymbol()用法及代碼示例
- Java DecimalFormatSymbols getPercent()用法及代碼示例
- Java DecimalFormatSymbols getInternationalCurrencySymbol()用法及代碼示例
- Java DecimalFormatSymbols setInternationalCurrencySymbol()用法及代碼示例
- Java DecimalFormatSymbols getMinusSign()用法及代碼示例
- Java DecimalFormatSymbols getExponentSeparator()用法及代碼示例
注:本文由純淨天空篩選整理自srinam大神的英文原創作品 DecimalFormatSymbols setExponentSeparator() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。