There are situations, where it is practical to have a type-cast return a null value instead of throwing a ClassCastException. C# has the as operator to do this. Is there something equivalent available in Java so you don't have to explicitly check for the ClassCastException?
|
1
|
|
|||
|
|
|
|
Here's an implementation of as, as suggested by @Omar Kooheji:
|
||
|
|
|
|
You can use the Example:
|
||||
|
|
|
I'd think you'd have to roll your own:
EDIT: If you don't want your client code to deal with nulls, then you can introduce a Null Object
|
|||
|
|
|
|
I'm speculating you could propably creas an as operator something like
I'm not sure how you'd do it, I'm a c# at the moment and my Java hat has gotten a bit dusty since I left university. |
|||
|
|
|
|
You could write a static utility method like this. I don't think it's terribly readable, but it's the best approximation of what you're trying to do. And if you use static imports it wouldn't be too bad in terms of readability.
Here's a test case that demonstrates how it works (and that it does work.)
|
||||||||
|
