如何在 Java 中使用 toString() 获得数字的字符串表示形式?


toString() 方法是 Object 类的重要方法,可用于返回对象的字符串或文本表示形式。Object 类的 toString() 方法返回一个字符串,作为指定对象的类的名称,后跟“@”符号和对象的哈希码 (java.lang.String;@36f72f09)

我们还可以使用 toString() 方法来获取数字的字符串表示形式,如果字符串由来自不同变量的数字组成,这将非常有用。在这种情况下,该数字可以转换为字符串,并进行连接以创建一个组合或格式化的字符串。

语法

public String toString()

实例

public class ToStringMethodTest {
   public static void main(String args[]) {
      int num1 = 50;
      Integer num2 = 75;
      float flt1 = 50.75f;
      Float flt2 = 80.55f;
      double dbl1 = 3256522.44d;
      Double dbl2 = new Double(565856585d);
      //converting numbers to string format by toString()
      String str_int1 = Integer.toString(num1);
      String str_int2 = num2.toString();
      String str_flt1 = Float.toString(flt1);
      String str_flt2 = flt2.toString();
      String str_dbl1 = Double.toString(dbl1);
      String str_dbl2 = dbl2.toString();
      System.out.println("int to string = " + str_int1);
      System.out.println("Integer to string = " + str_int2);
      System.out.println("float to string = " + str_flt1);
      System.out.println("Float to string = " + str_flt2);
      System.out.println("double to string = " + str_dbl1);
      System.out.println("Double to string = " + str_dbl2);
   }  
}

输出

int to string = 50
Integer to string = 75
float to string = 50.75
Float to string = 80.55
double to string = 3256522.44
Double to string = 5.65856585E8

更新于: 2023-11-27

617 浏览

开启您的职业生涯 之路

完成课程后取得认证

开始
广告