Answers for "convert double to double java"

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
0

java double to float

double d = getInfoValueNumeric();
float f = (float)d;
Posted by: Guest on September-06-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language