Is it possibly in java to attempt a cast and get a null if the cast fails?
|
|
Usage:
|
||||||
|
|
|
You can use the
Of course it can be genericied and made into the function, but I think question was about what means Java have to accomplish this. |
||||||||||
|
|
|
You can, but not with a single function in Java:
EDIT: Note that you can't make the B class generic (for this example) without adding the target class (this has to do with the fact that a generic type is not available to
|
|||
|
|
|
...
I guess this could somehow done with generics also but I think but probably is not what is needed. This simple method receives Object and returns Object because the cast is performed in the method client. |
|||
|
|
|
|
AFAIK, this would be (one) of the ways to do that:
Ugly, but it should do what you want... |
||||||||
|
|
|
In Java if a cast fails you will get a ClassCastException. You can catch the exception and set the target object to null. |
||
|
|
|
|
The two solutions above are somewhat awkward: Casting and catching ClassCastException: creating the exception object can be expensive (e.g. computing the stack trace). The nullCast method described earlier means you need a cast method for each cast you want to perform. Generics fail you because of "type erasure" ... You can create a static helper method that is guaranteed to return an instance of your target class or null, and then cast the result without fear of exception:
Sample call:
|
||
|
|
|
|
you can handle this catching ClassCastException |
||
|
|
|
You can either catch the exception:
or check the type:
|
||||||||
|
