Use this cast:
Tree tree = obj as Tree;
... only if the program logic is such that you anticipate obj may or may not be of type tree.
In the situation where you expect that obj will only ever be of type Tree, prefer this style of cast:
Tree tree = (Tree)ojb;
Prefer a (TargetType) style cast unless you really do need to make use of the conditional functionality offered by an 'as' cast.
Note: be sure to follow an 'as' cast with an 'if' or other appropriate logic to ensure that if the result of the 'as' was null, an attempt won't be made to dereference it. This is a mistake:
Tree tree = obj as Tree;
tree.GrowBranch(); // Bad. Possible NullReference exception!
In this case, the programmer meant one of these:
// Expected obj always to be a tree
Tree tree = (Tree)obj;
tree.GrowBranch();
// Expected obj could be a tree or could be something else
Tree tree = obj as Tree;
if( tree != null )
{
tree.GrowBranch();
}
Some people believe that...
Tree tree = (Tree)obj;
...is bad because it may throw an exception if the prerequisite that obj is a Tree isn't met. It's not bad though, because it will throw an InvalidCast exception. That's the right sort of exception and is thrown at the right time.
The NullReference exception that occurred after the 'as' cast in the first GrowTree() example gets thrown:
- When the real cause of the problem was not a null reference, it was an invalid cast.
- Some time after the real problem (the bad cast) occurred.
These two reasons make it more difficult to debug and determine what the real problem was.
The performance if these two types of cast is similar. It is true that a (TargetType) style class throws an exception if the cast fails. However, this is not a problem that would affect performance. The reason is that we use a (TargetType) style cast only when we expect the cast will always succeed. So, no exception should ever be thrown! If an exception does get thrown, then there is a problem in the logic/design of the code. Fixing a problem like this by changing the (TargetType) cast into an 'as' style cast is probably wrong as it will probably just mask the real cause of the problem.
Using the 'as' cast instead of the (TargetType) cast because you think it looks prettier is not a good reason for writing incorrect code.
Writing:
Tree tree = obj as Tree;
if( tree != null )
{
tree.GrowBranch();
}
every time you need a cast, "just to be on the safe side" is absurd. You have to stop somewhere, otherwise one day you'll find yourself writing:
if( thisComputersPowerHasFailed )
{
SendEmailToAdministratorToSaySomethingHasGoneWrong();
}
Code like this introduces more and more conditional execution paths through your code. Every time you write some code to cope with a case that you don't expect should happen, you will increase the complexity of your program. Unnecessary complexity is just the kind of thing that causes bugs to slip in to code. The root causes of bugs will be tricky to find because they'll be hidden behind other unnecessary error handlers that try to hide or log the problem and carry on. A (TargetType) cast adheres to the generally good advice of writing code to fail-fast.