toString() Method in java conversion Double to String

Java Programming Language / Number Class in java

992

Program:

 public class WrappertoStringMethod {
    public static void main(String[] args){

        Double d = new Double("3.14");
        System.out.println("d = "+ d.toString() );
        // result is d = 3.14

        String  s = Double.toString(3.14);
        // d = "3.14"
  System.out.println("d = "+ d.toString() );
}
}

    

Output:

d = 3.14
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.