Home » Questions » Computers [ Ask a new question ]

Casting: (NewType) vs. Object as NewType [duplicate]

Casting: (NewType) vs. Object as NewType [duplicate]

"This question already has answers here:





Casting vs using the 'as' keyword in the CLR

(18 answers)


Closed 1 year ago.




What is actually the difference between these two casts?
SomeClass sc = (SomeClass)SomeObject;
SomeClass sc2 = SomeObject as SomeClass;

Normally, shouldn't they both be explicit casts to the specified type?"

Asked by: Guest | Views: 430
Total answers/comments: 5
Guest [Entry]

"The former will throw an exception if the source type can't be cast to the target type. The latter will result in sc2 being a null reference, but no exception.

[Edit]

My original answer is certainly the most pronounced difference, but as Eric Lippert points out, it's not the only one. Other differences include:

You can't use the 'as' operator to cast to a type that doesn't accept 'null' as a value
You can't use 'as' to convert things, like numbers to a different representation (float to int, for example).

And finally, using 'as' vs. the cast operator, you're also saying ""I'm not sure if this will succeed."""
Guest [Entry]

"Also note that you can only use the as keyword with a reference type or a nullable type

ie:

double d = 5.34;
int i = d as int;

will not compile

double d = 5.34;
int i = (int)d;

will compile."
Guest [Entry]

"Typecasting using ""as"" is of course much faster when the cast fails, as it avoids the expense of throwing an exception.

But it is not faster when the cast succeeds. The graph at http://www.codeproject.com/KB/cs/csharpcasts.aspx is misleading because it doesn't explain what it's measuring.

The bottom line is:

If you expect the cast to succeed (i.e. a failure would be exceptional), use a cast.
If you don't know if it will succeed, use the ""as"" operator and test the result for null."
Guest [Entry]

A difference between the two approaches is that the the first ((SomeClass)obj) may cause a type converter to be called.
Guest [Entry]

"Well the 'as' operator ""helps"" you bury your problem way lower because when it is provided an incompatible instance it will return null, maybe you'll pass that to a method which will pass it to another and so on and finally you'll get a NullReferenceException which will make your debugging harder.

Don't abuse it. The direct cast operator is better in 99% of the cases."