Answers for "converte int to double"

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

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language