Long x;
int y = (int) x;
Eclipse is marking this line with the eror: Can not cast Long to an int.
Eclipse is marking this line with the eror: Can not cast Long to an int. |
||||
|
Use primitive
You can't cast an Object (Long is an Object) to a primitive, the only exception being the corresponding primitive / wrapper type through auto (un) boxing If you must convert a
But beware: you may be losing information! A |
|||||||
|
is working. |
|||||
|
long, this one's about converting aLong. Big difference! – Sean Patrick Floyd Apr 27 '11 at 8:52