Java.math.MathContext.toString()方法範例


java.math.MathContext.toString() 返回MathContext的字串表示形式。

返回的字串表示MathContext物件為兩個空格分開的單詞(由單個空格字元,' u0020'分隔,且沒有前導或尾隨空白)的設定,如下所示:

  1. 字串“precision=”,後面緊跟的精度設定的值作為數位字串,由Integer.toString方法生成。

  2. 字串“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