Java.math.BigInteger.toString() 方法



描述

java.math.BigInteger.toString() 返回此 BigInteger 的十进制 String 表示形式。此方法使用了 Character.forDigit 提供的数字到字符映射,并在需要时添加一个减号前缀。

此表示形式兼容于 (String) 构造函数,并允许与 Java 的 + 运算符进行 String 串联。

声明

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

public String toString()

覆盖

Object 中的 toString。

参数

不适用

返回值

此方法返回此 BigInteger 的十进制 String 表示形式。

异常

不适用

不适用

示例

package com.tutorialspoint;

import java.math.*;

public class BigIntegerDemo {

   public static void main(String[] args) {

      // create 2 BigInteger objects
      BigInteger bi1, bi2;

      // create 2 String objects
      String s1, s2;

      bi1 = new BigInteger("1234");
      bi2 = new BigInteger("-1234");

      // assign String value of bi1, bi2 to s1, s2
      s1 = bi1.toString();
      s2 = bi2.toString();

      String str1 = "String value of " + bi1 + " is " +s1;
      String str2 = "String value of " + bi2 + " is " +s2;

      // print s1, s2 values
      System.out.println( str1 );
      System.out.println( str2 );
   }
}

让我们编译并运行上述程序,这将产生以下结果 −

String value of 1234 is 1234
String value of -1234 is -1234
java_math_biginteger.htm
广告