vote up 4 vote down star

If you want to switch a type of object, what is the best way to do this?

ex:

private int GetNodeType(NodeDTO node)
    	{
    		switch (node.GetType())
    		{ 
    			case typeof(CasusNodeDTO):
    				return 1;
    				break;
    			case typeof(BucketNodeDTO):
    				return 3;
    				break;
    			case typeof(BranchNodeDTO):
    				return 0;
    				break;
    			case typeof(LeafNodeDTO):
    				return 2;
    				break;
    			default:
    				return -1;
    				break;
    		}
    	}

I know this doesn't work that way, but I was wondering how you could solve this. Is an if then else else else statement appropriate in this case? Or do you use this switch and add .ToString() to the types?

Kind regards, Sem

flag

7 Answers

vote up 8 vote down check

If I really had to switch on type of object, I'd use .ToString(). However, I would avoid it at all costs: IDictionary<Type, int> will do much better, visitor might be an overkill but otherwise it is still a perfectly fine solution.

link|flag
IDictionary is a fine solution in my opinion. If it's more than one or two types to test, I'd usually use that. Well, or just use polymorphism in the first place to avoid switching on types. – OregonGhost Apr 2 at 9:12
IDictionary is indeed a great solution for this matter, thx a lot – Sem Dendoncker Apr 2 at 9:16
Polymorphism where approriate. If this "type" is used for serialization then you'd be mixing concerns. – Dave Van den Eynde Apr 2 at 9:27
vote up 1 vote down

I'd use the string (Name) at the top of the switch:

  private int GetNodeType(NodeDTO node)
            {
                    switch (node.GetType().Name)
                    { 
                            case "CasusNodeDTO":
                                    return 1;
                                    break;
                            case "BucketNodeDTO":
                                    return 3;
                                    break;
                           // ...

                            default:
                                    return -1;
                                    break;
                    }
            }
link|flag
If you change the Type's Name during refactoring, you could introduce a bug that would not be caught until runtime. – Keith Sirmons Jul 15 at 21:31
vote up 3 vote down

I'd just use an if statement. In this case:

Type nodeType = node.GetType();
if (nodeType == typeof(CasusNodeDTO))
{
}
else ...

The other way to do this is:

if (node is CasusNodeDTO)
{
}
else ...

I suspect the latter might be a bit faster.

link|flag
I second that, but I think comparing references is faster than repeated casting attempts. – Dave Van den Eynde Apr 2 at 9:15
I'm not sure its comparing references though. I think the RuntimeType system comes into effect. I'm just guessing though, because if it wasn't something like that, the compiler wouldn't tell you that typeof(X) is not a constant – Ch00k Apr 2 at 10:09
vote up 2 vote down

You can do this:

if (node is CasusNodeDTO)
{
    ...
}
else if (node is BucketNodeDTO)
{
    ...
}
...

While that would be more elegant, it's possibly not as efficient as some of the other answers here.

link|flag
vote up 3 vote down

One approach is to add a pure virtual GetNodeType() method to NodeDTO and override it in the descendants so that each descendant returns actual type.

link|flag
While that's the OO way to handle it, you might decide that Node shouldn't have to support any of this. – Dave Van den Eynde Apr 2 at 9:16
vote up 1 vote down

Depending on what you are doing in the switch statement, the correct answer is polymorphism. Just put a virtual function in the interface/base class and override for each node type.

link|flag
vote up 1 vote down

Here is some info why .net does not provide switching on types.

As usual - workarounds always exists.

This one ain't mine, but unfortunately i have lost source.
It makes switching on types possible but i personally think it's quite awkward (dictionary idea is better):

  public class Switch
    {
        public Switch(Object o)
        {
            Object = o;
        }

        public Object Object { get; private set; }
    }


    /// <summary>
    /// Extensions, because otherwise casing fails on Switch==null
    /// </summary>
    public static class SwitchExtensions
    {
        public static Switch Case<T>(this Switch s, Action<T> a) 
              where T : class
        {
            return Case(s, o => true, a, false);
        }

        public static Switch Case<T>(this Switch s, Action<T> a, 
             bool fallThrough) where T : class
        {
            return Case(s, o => true, a, fallThrough);
        }

        public static Switch Case<T>(this Switch s, 
            Func<T, bool> c, Action<T> a) where T : class
        {
            return Case(s, c, a, false);
        }

        public static Switch Case<T>(this Switch s, 
            Func<T, bool> c, Action<T> a, bool fallThrough) where T : class
        {
            if (s == null)
            {
                return null;
            }

            T t = s.Object as T;
            if (t != null)
            {
                if (c(t))
                {
                    a(t);
                    return fallThrough ? s : null;
                }
            }

            return s;
        }
    }

usage:

 new Switch(foo)
     .Case<Fizz>
         (action => { doingSomething = FirstMethodCall(); })
     .Case<Buzz>
         (action => { return false; })
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.