How can I cast an Object to an int in java?
|
If you're sure that this object is an
Or, starting from Java 7, you can equivalently write:
Beware, it can throw a This way you assume that your Object is an Integer (the wrapped int) and you unbox it into an int.
If your object is a
It can throw a Resources : On the same topic : |
|||||||||||||||||
|
|
Assuming the object is an int i = ((Integer) obj).intValue(); If the object isn't an |
|||||||||
|
|
You have to cast it to an Integer (int's wrapper class). You can then use Integer's intValue() method to obtain the inner int. |
|||
|
|
|
You can't. An int is not an Object. Integer is an object though, but I doubt that's what you mean. |
|||||||||||||
|
|
Answer:
If, your object is an integer already, it will run smoothly. ie:
or
etc. If your object is anything else, you would need to convert it ( if possible ) to an int first:
Or
|
|||
|
|
As you can see, this isn't a very efficient way of doing it. You simply have to be sure of what kind of object you have. Then convert it to an int the right way. |
|||||||
|
|
If you mean cast a String to int, use You can't cast most other Objects to int though, because they wont have an int value. E.g. an XmlDocument has no int value. |
|||||
|
|
If the
Note that this only works when you're using at least Java 1.5 with autoboxing feature, otherwise you have to declare But if it initially wasn't created as an
See also: |
||||
|
|
|
|||
|
|
|
I guess you're wondering why C or C++ lets you manipulate an object pointer like a number, but you can't manipulate an object reference in Java the same way. Object references in Java aren't like pointers in C or C++... Pointers basically are integers and you can manipulate them like any other int. References are intentionally a more concrete abstraction and cannot be manipulated the way pointers can. |
|||
|
|
|
Can't be done. An
|
||||
Objectisn't anInteger, I'm not sure what your are expecting from your cast. – unholysampler Sep 7 '10 at 18:19