vote up 3 vote down star

I have a program that requires fast performance. Within one of its inner loops, I need to test the type of an object to see whether it inherits from a certain interface.

One way to do this would be with the CLR's built-in type-checking functionality. The most elegant method there probably being the 'is' keyword:

if (obj is ISpecialType)

Another approach would be to give the base class my own virtual GetType() function which returns a pre-defined enum value (in my case, actually, i only need a bool). That method would be fast, but less elegant.

I have heard that there is an IL instruction specifically for the 'is' keyword, but that doesn't mean it executes fast when translated into native assembly. Can anyone share some insight into the performance of 'is' versus the other method?

UPDATE: Thanks for all the informed answers! It seem a couple helpful points are spread out among the answers: Andrew's point about 'is' automatically performing a cast is essential, but the performance data gathered by Binary Worrier and Ian is also extremely useful. It would be great if one of the answers were edited to include all of this information.

flag

57% accept rate
btw, CLR will not give you a possibility to create your own Type GetType() function, because it breaks one of main CLR rules - truly types – abatishchev Mar 26 at 16:26
Er, I'm not completely sure what you mean by the "truly types" rule, but I understand that the CLR has a built-in Type GetType() function. If I were to use that method, it would be with a function of a different name returning some enum, so there wouldn't be any name/symbol conflict. – JubJub Mar 26 at 16:58
I think abatishchev meant "type safety". GetType() is non-virtual to prevent a type from lying about itself and therefore preserving type safety. – Andrew Hare Mar 26 at 19:05

5 Answers

vote up 18 vote down check

Using is can hurt performance if, once you check the type, you cast to that type. is actually casts the object to the type you are checking so any subsequent casting is redundant.

If you are going to cast anyway, here is a better approach:

ISpecialType t = obj as ISpecialType;

if (t != null)
{
    // use t here
}
link|flag
Thanks. But if I'm not going to cast the object if the conditional fails, would I be better off using a virtual function to test the type instead? – JubJub Mar 26 at 16:15
vote up 0 vote down

@Binary Worrier-

Your new operator allocations of classes are going to completely overshadow any performance differences in the 'is' operations.

Why don't you remove those new operations, by reusing two different pre-allocated instances, and then re-run the code and post your results.

link|flag
vote up 4 vote down

I'm with Ian, you probably don't want to do this.

However, just so you know, there is very little difference between the two, over 10,000,000 iterations

  • The enum check comes in at 700 milliseconds (approx)
  • The IS check comes in at 1000 milliseconds (approx)

I personally wouldn't fix this problem this way, but if I was forced to pick one method it would be the built in IS check, the performance difference isn't worth considering the coding overhead.

My base and derived classes

class MyBaseClass
{
    public enum ClassTypeEnum { A, B }
    public ClassTypeEnum ClassType { get; protected set; }
}

class MyClassA : MyBaseClass
{
    public MyClassA()
    {
        ClassType = MyBaseClass.ClassTypeEnum.A;
    }
}
class MyClassB : MyBaseClass
{
    public MyClassB()
    {
        ClassType = MyBaseClass.ClassTypeEnum.B;
    }
}

JubJub: As requested more info on the tests.

I ran both tests from a console app (a debug build) each test looks like the following

static void IsTest()
{
    DateTime start = DateTime.Now;
    for (int i = 0; i < 10000000; i++)
    {
        MyBaseClass a;
        if (i % 2 == 0)
            a = new MyClassA();
        else
            a = new MyClassB();
        bool b = a is MyClassB;
    }
    DateTime end = DateTime.Now;
    Console.WriteLine("Is test {0} miliseconds", (end - start).TotalMilliseconds);
}

Running in release, I get a difference of 60 - 70 ms, like Ian.

link|flag
+1 for actually testing the performance, instead of assuming. – Jon Tackabury Mar 26 at 16:51
Thanks for testing! Ian commented above that he conducted a performance test and the difference between methods was even slighter than what you found. I'm curious how you came to your numbers. – JubJub Mar 26 at 16:55
Thanks for the update! If I understand correctly, your second test invalidates the earlier results of 700 vs 1000 ms. Perhaps you should update the post to reflect this and incorporate Andrew's answer as well to make this the most informative answer. – JubJub Mar 26 at 17:42
1  
It's much better to do test with Stopwatch class, instead of DateTime.Now which is very expensive – abatishchev Mar 27 at 9:34
1  
I'll take that on board, however in this instance I don't think it would affect the outcome. Thanks :) – Binary Worrier Mar 27 at 13:07
show 2 more comments
vote up -1 vote down

operator is is much faster then virtual functions

link|flag
How much faster? – Binary Worrier Mar 26 at 17:02
vote up 7 vote down

Andrew is correct. In fact with code analysis this gets reported by Visual Studio as an unnecessary cast.

One idea (without knowing what you're doing is a bit of a shot in the dark), but I've always been advised to avoid checking like this, and instead have another class. So rather than doing some checks and having different actions depending on the type, make the class know how to process itself...

e.g. Obj can be ISpecialType or IType;

both of them have a DoStuff() method defined. For IType it can just return or do custom stuff, whereas ISpecialType can do other stuff.

This then completely removes any casting, makes the code cleaner and easier to maintain, and the class knows how to do it's own tasks.

link|flag
Yes, since all I am going to do if the type tests true is call a certain interface method on it, I could just move that interface method into the base class and have it do nothing by default. That might be more elegant than creating a virtual function to test type. – JubJub Mar 26 at 16:23
I did a similar test to Binary Worrier after abatishchev's comments and found only 60ms difference over 10,000,000 itterations. – Ian Mar 26 at 16:45
Wow, thanks for the help. I suppose I'll stick to using the type checking operators for now then, unless it seems appopriate to reorganize the class structure. I'll use the 'as' operator as Andrew suggested since I don't want to cast redundantly. – JubJub Mar 26 at 16:52

Your Answer

Get an OpenID
or

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