everybody =) I'm trying to cast a string to Double this way
Class.forName("java.lang.Double").cast("100")
But it throws ClassCastException. :(
What's wrong with this? And how can I achieve what I want.
|
everybody =) I'm trying to cast a string to Double this way
But it throws ClassCastException. :( |
|||||||||||||||
|
|
You cannot cast a
or
|
|||||||
|
|
You're essentially trying to cast a String to Double like so
You can't do that. This is the reason for your ClassCastException. You need to use Double.valueOf() |
|||
|
|