当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.math.MathContext.toString()用法及代码示例



描述

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

返回的字符串将 MathContext 对象的设置表示为两个 space-delimited 字(由单个空格字符 '\u0020' 分隔,并且没有前导或尾随空格),如下所示

  • 字符串“precision = ”,紧接着精度设置的值作为数字字符串,就像由 Integer.toString 方法生成的一样。

  • 字符串“roundingMode =”,紧接着是roundingMode 设置的值作为一个字。这个词将与 RoundingMode 枚举中相应公共常量的名称相同。

如果向此类添加更多属性,将来可能会在 toString 的结果中附加额外的单词。

声明

以下是声明java.math.MathContext.toString()方法。

public String toString()

覆盖

类中的 toStringObject

参数

NA

返回值

此方法返回一个表示上下文设置的字符串。

异常

NA

示例

下面的例子展示了 math.MathContext.toString() 方法的用法。

package com.tutorialspoint;

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

相关用法


注:本文由纯净天空筛选整理自 Java.math.MathContext.toString() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。