Java - Double toString() method



Description

The Java Double toString(double d) method returns a string representation of the double argument.The argument d is the double value to be converted.

Declaration

Following is the declaration for java.lang.Double.toString() method

public static String toString(double d)

Parameters

d − This is the double to be converted.

Return Value

This method returns a String representation of the argument.

Exception

NA

Example 1

The following example shows the usage of Double toString() method to get a string representation of a Double object. We've initialized one Double object with a positive value. Then using toString() method, we're printing the string representation value of the object.

package com.tutorialspoint;
public class DoubleDemo {
   public static void main(String[] args) {
    
      // returns a string value
      String retval = Double.toString(3.08);
      System.out.println("Value = " + retval);
   }
} 

Output

Let us compile and run the above program, this will produce the following result −

Value = 3.08

Example 2

The following example shows the usage of Double toString() method to get a string representation of a Double object. We've initialized one Double object with a negative value. Then using toString() method, we're printing the string representation value of the object.

package com.tutorialspoint;
public class DoubleDemo {
   public static void main(String[] args) {
    
      // returns a string value
      String retval = Double.toString(-3.08);
      System.out.println("Value = " + retval);
   }
} 

Output

Let us compile and run the above program, this will produce the following result −

Value = -3.08

Example 3

The following example shows the usage of Double toString() method to get a string representation of a Double object. We've initialized one Double object with a negative zero value. Then using toString() method, we're printing the string representation value of the object.

package com.tutorialspoint;
public class DoubleDemo {
   public static void main(String[] args) {
    
      // returns a string value
      String retval =  Double.toString(-0.0);
      System.out.println("Value = " + retval);
   }
} 

Output

Let us compile and run the above program, this will produce the following result −

Value = -0.0

Example 4

The following example shows the usage of Double toString() method to get a string representation of a Double object. We've initialized one Double object with a postive zero value. Then using toString() method, we're printing the string representation value of the object.

package com.tutorialspoint;
public class DoubleDemo {
   public static void main(String[] args) {
    
      // returns a string value
      String retval =  Double.toString(0.0);
      System.out.println("Value = " + retval);
   }
} 

Output

Let us compile and run the above program, this will produce the following result −

Value = 0.0
java_lang_double.htm
Advertisements