Answers for "java convert Double to double"

10

string to double java

public class stringtodouble {
	public static void main(String args) {
    	String string = "1.23";
      	double decimal = Double.parseDouble(string);
    }
}
Posted by: Guest on February-26-2020
4

java int to double

// Primitive type
int myInt = 5;
double myDouble = (double)myInt;		// explicit cast
myDouble = myInt;						// implicit cast
// Object type
Double myDouble = new Double(myInt)		// via constructor
myDouble = Double.valueOf(myInt)		// via valueOf
Posted by: Guest on February-13-2021
3

from string to double java

String str="122.202";
double dnum = Double.parseDouble(str);
Posted by: Guest on April-09-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language