Is there any way to convert a Long data type to Double or double?
Long
Double
double
For example, I need to convert 15552451L to a
15552451L
Simple casting?
double d = (double)15552451L;