Java BigDecimal toString()方法与示例
BigDecimal類toString()方法 (BigDecimal Class toString() method)
toString() method is available in java.math package.
toString()方法在java.math包中可用。
toString() method is used to represent string denotation of this BigDecimal with the help of scientific notation when an exponent field is required to denote BigDecimal as String.
當需要使用指數(shù)字段將BigDecimal表示為String時,可以使用toString()方法借助科學表示法來表示此BigDecimal的字符串表示形式。
toString() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
toString()方法是一種非靜態(tài)方法,只能通過類對象訪問,如果嘗試使用類名稱訪問該方法,則會收到錯誤消息。
toString() method does not throw an exception at the time of string representation.
toString()方法在字符串表示時不會引發(fā)異常。
Syntax:
句法:
public String toString();Parameter(s):
參數(shù):
It does not accept any parameter.
它不接受任何參數(shù)。
Return value:
返回值:
The return type of this method is String, it returns string denotation of this BigDecimal.
此方法的返回類型為String ,它返回此BigDecimal的字符串表示形式。
Example:
例:
// Java program to demonstrate the example // of String toString() method of BigDecimalimport java.math.*;public class ToStringOfBD {public static void main(String args[]) {// Initializes a variables - // String typeString str = "12642E5";// Initializes a BigDecimal object BigDecimal b_dec = new BigDecimal(str);// represents this BigDecimal b_dec value as// a String by using the scientific notationString str_conv = b_dec.toString();System.out.println("b_dec.toString(): " + str_conv);} }Output
輸出量
b_dec.toString(): 1.2642E+9翻譯自: https://www.includehelp.com/java/bigdecimal-tostring-method-with-example.aspx
總結(jié)
以上是生活随笔為你收集整理的Java BigDecimal toString()方法与示例的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 所有子序列的逆序对总和_一个数字的所有子
- 下一篇: da---tlc5615._CD-DA的