As in this example:
switch ( myObj.GetType ( ) )
{
case typeof(MyObject):
Console.WriteLine ( "MyObject is here" );
break;
}
|
As in this example:
| |||
|
show 6 more comments
feedback
|
|
The problem is that From §8.7.2:
It is obvious, however, that working with such a restricted set allows for simple (and efficient) IL. Note that | |||||||||||
feedback
|
|
I would add to Peter's excellent analysis the following thought: Fundamenatally, the purpose of a "switch" is to choose one of some number of distinct possibilities. A given value of enum, integer, Boolean or string type can only be one value, so it makes sense to "switch" on such a value. But types are fundamentally different. A given value usually has many types. Types frequently overlap. The proposed "type switch" does not match the stated purpose of the switch construct. | |||||||||
feedback
|
|
There's a good blog post on MSDN by Peter Hallam which explains the problems of switching on non-constant values.
| |||
|
feedback
|
|
Second on Peter Hallam's post; it's a great explanation. You can use TypeCode to work with simple types, though.
| |||
|
feedback
|
|
It's that typeof is not a constant and cases must be constants. | |||||||||
feedback
|
|
a switch in C# only works for integrals or strings. myObj.GetType() returns a Type, which is neither an integral or a string. | ||||
|
feedback
|
|
Why don't you just tostring() it? | |||||
feedback
|
|
You could do
This works because switching only works on primitive types (as others have said). | |||||||
feedback
|
|
There's no good reason for MS not to implement switching on types, other than laziness. String switching is accomplished using "if(..Equals(..))"s with few cases and a Dictionary with many cases. Both of those approaches are defined for all .NET types, because System.Object has Equals and GetHashCode that are virtual. One could say that, "switch can use expression of any type where Equals and GetHashCode are overridden", which automatically qualifies string, Type, etc. Yes, bad Equals/GetHashCode implementation will break the switch statement, but hey, you can also break the "==" operator, the "foreach" loop, and a bunch of other stuff, so I don't really see the "big problem" with switch being broken by programmer's mistake. But even if they don't want to allow it for all types, for whatever reason, certainly Type is safe, because Type.Equals() is well-defined and GetHashCode is also implemented. Also, I don't buy the argument that you have consider inheritance; switch goes to the case whose constant (and type(int) is a constant, make no mistake about that) is equal to the expression - inheritance is another "behavior" of the type Type. One doesn't even need to consider inheritance, I mean, do we refuse to compare 2 objects just because they have other qualities? No, we don't, because equality is always defined. Basically, point is, there's no overlapping between different types. So as I said, there's one reason and one reason only: laziness. :) | |||
|
feedback
|
switchstatement that switches on the type of an object, you really need to refactor and delegate the cases to the object implementations. In a well-designed OO system there should never be a need to do this. – Daniel Pryden Nov 10 '09 at 21:19