Java.math.MathContext.toString()方法實例
java.math.MathContext.toString() 返回MathContext的字符串表示形式。
返回的字符串表示MathContext對象爲兩個空格分開的單詞(由單個空格字符,' u0020'分隔,且沒有前導或尾隨空白)的設置,如下所示:
字符串「precision=」,後面緊跟的精度設置的值作爲數字字符串,由Integer.toString方法生成。
字符串「RoundingMode=」,後面緊跟着的RoundingMode設置作爲一個字的值。這個字將是相同的,爲相應的公用常數與RoundingMode枚舉的名稱。
附加可能會被附加到的toString未來的結果,如果更多的屬性添加到這個類。
聲明
以下是java.math.MathContext.toString()方法的聲明
public String toString()
覆蓋
Object類中的toString
參數
- NA
返回值
此方法返回表示上下文設置一個String。
異常
- NA
例子
下面的例子顯示math.MathContext.toString()方法的用法
package com.yiibai; import java.math.*; public class MathContextDemo { public static void main(String[] args) { // create 2 MathContext objects MathContext mc1, mc2; // assign context settings to mc1, mc2 mc1 = new MathContext(6, RoundingMode.DOWN); mc2 = new MathContext(20, RoundingMode.FLOOR); // create 2 String objects String s1, s2; // assign string representation of mc1, mc2 to s1, s2 s1 = mc1.toString(); s2 = mc2.toString(); String str1 = "String representation of mc1 is " + s1; String str2 = "String representation of mc2 is " + s2; // print s1, s2 values System.out.println( str1 ); System.out.println( str2 ); } }
讓我們編譯和運行上面的程序,這將產生以下結果:
String representation of mc1 is precision=6 roundingMode=DOWN String representation of mc2 is precision=20 roundingMode=FLOOR