Answers for "casting an int to a 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
3

int to double java

Double d= new Double(i);//first way  
Double d2=Double.valueOf(i);//second way  
Posted by: Guest on August-10-2020

Code answers related to "casting an int to a double java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language