A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.tutorialspoint.com/java/lang/string_valueof_double.htm below:

Java.lang.String.valueOf() Method

Java.lang.String.valueOf() Method Description

The java.lang.String.valueOf(double d) method returns the string representation of the double argument.

Declaration

Following is the declaration for java.lang.String.valueOf() method

public static String valueOf(double d)
Parameters

d − This is a double value.

Return Value

This method returns a string representation of the double argument.

Exception

NA

Example

The following example shows the usage of java.lang.String.valueOf() method.

package com.tutorialspoint;

import java.lang.*;

public class StringDemo {

  public static void main(String[] args) {

      String str1 = String.valueOf(12.97);
      String str2 = String.valueOf(Double.MIN_VALUE);
      String str3 = String.valueOf(Double.MAX_VALUE);

      // print the string representation of double
      System.out.println(str1);
      System.out.println(str2);
      System.out.println(str3);
   }
}

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

12.97
4.9E-324
1.7976931348623157E308

java_lang_string.htm


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4