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


Java Double toString()用法及代码示例


用法:

    public String toString();
    public static String toString(double value);

Double类toString()方法

  • toString() 方法可在java.lang包。
  • toString() 方法用于获取 Double 值/对象的字符串值(用 "this" 对象调用)。
  • toString(double value) 方法也用于获取给定双精度值的字符串值(这里,我们将双精度值/对象作为参数传递)。
  • 两种类型的方法在从 Double 转换为 String 时都不会抛出异常。
  • 这两种类型的方法都是非静态方法,只能通过类对象访问,如果我们尝试使用类名访问方法,则会出现错误。

参数:

  • 第一种情况:toString(),我们不传递任何参数或值。
  • 第二种情况:toString(double value),我们只传递一个参数doubletype 它代表要转换的双精度值。

返回值:

在第一种情况下, String– 它返回此 Double 对象的字符串表示形式。

在第二种情况下, String– 它返回给定参数的字符串表示是双精度类型。

例:

// Java program to demonstrate the example 
// of toString () method of Double class

public class ToStringOfDoubleClass {
    public static void main(String[] args) {
        // Object initialization
        Double ob1 = new Double("10.20");
        Double ob2 = new Double("20.20");

        // Display ob1,ob2 values
        System.out.println("ob1:" + ob1);
        System.out.println("ob2:" + ob2);

        // It represents string of this Double object
        String value1 = ob1.toString();

        // It represents string of the given double parameter
        String value2 = Double.toString(ob2);

        // Display result values
        System.out.println("ob1.toString():" + value1);
        System.out.println("Double.toString(ob2):" + value2);
    }
}

输出

ob1:10.2
ob2:20.2
ob1.toString():10.2
Double.toString(ob2):20.2


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Double class toString() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。