Could anyone please tell me why the following casting is resulting in compile time error:
Long l = (Long)Math.pow(5,2);
But why not the following:
long l = (long)Math.pow(5,2);
|
|
This would however work fine, thanks to autoboxing which converts between
To summarize, you can convert |
|||||||
|
|
You can't cast a primitive type (like |
|||||||||||
|
|
Because primitive types are not object at all effects also if java added some workarounds (like implicit unboxing of these types). You can sole it in various ways, like:
This works because Java is able:
|
|||
|
|