Click here to Skip to main content
15,868,141 members
Articles / Programming Languages / Visual Basic

Which Code Runs Faster? The Answer May Surprise You....

Rate me:
Please Sign up or sign in to vote.
3.00/5 (7 votes)
25 Feb 2013CPOL1 min read 15.8K   7   12
This code compares object types instead of the name for the object type.

I saw some code that piqued my interest a few days ago. Basically, this code compared object types instead of the name for the object type.  Being the developer that I am, it set me thinking about which way is faster. Here are a couple of routines that do the exact same thing. Which one do you think will run faster? This code is targeted for .NET 4 Client, but should also work in .NET 2 and later.

The StopWatch objects (oStopWatchA and oStopWatchB) are defined as Class level private System.Diagnostics.Stopwatch objects and initialized before the call to the Subs. The Object object (oObject) is defined as a Class level private System.Object object and initialized before the call to the Subs.  Each routine was run 1,000 times, swapping with each execution to eliminate external factors to the timing.

VB.NET
Private Sub CompareA()
  Dim iLoop As Integer

  oStopWatchA.Start()
  For iLoop = 1 To 1000000
    Select Case oObject.GetType().Name
      Case "Object"
      Case "Exception"
      Case Else
    End Select
  Next
  oStopWatchA.Stop()
End Sub
VB.NET
Private Sub CompareB()
  Dim iLoop As Integer

  oStopWatchB.Start()
  For iLoop = 1 To 1000000
    Select Case oObject.GetType()
      Case GetType(Object)
      Case GetType(Exception)
      Case Else
    End Select
  Next
  oStopWatchB.Stop()
End Sub

The elapsed time for each is listed below (lower numbers are better):

Routine Elapsed Time (seconds)
CompareA 32.9136874
CompareB 7.7228856

Were you surprised? I was!

Edit: The whole point of this tip is to not just do the same thing the same way you always have. Look at other methods to accomplish your goal. I was surprised by the speed difference of changing the comparison from a string to a type reference, mainly because I expected the compiler to be able to generate code that pulled the type's name once for the comparison. I was also expecting the GetType() calls to be executed on every comparison (each Case statement).  

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
Long time software engineer who rambles occasionally about coding, best practices, and other random things.

Comments and Discussions

 
Questionsurprising ^_* Pin
BesSo W Bas20-Mar-13 2:21
BesSo W Bas20-Mar-13 2:21 
Questionok Pin
BillW3314-Mar-13 5:17
professionalBillW3314-Mar-13 5:17 
GeneralMy vote of 1 Pin
William E. Kempf25-Feb-13 11:02
William E. Kempf25-Feb-13 11:02 
GeneralRe: My vote of 1 Pin
Adam Zuckerman25-Feb-13 11:55
Adam Zuckerman25-Feb-13 11:55 
GeneralRe: My vote of 1 Pin
PIEBALDconsult25-Feb-13 12:55
mvePIEBALDconsult25-Feb-13 12:55 
QuestionWRONG Pin
Member 970941720-Feb-13 8:32
Member 970941720-Feb-13 8:32 
AnswerRe: WRONG Pin
PIEBALDconsult25-Feb-13 12:31
mvePIEBALDconsult25-Feb-13 12:31 
GeneralMy vote of 3 Pin
AnDev201320-Feb-13 6:52
AnDev201320-Feb-13 6:52 
QuestionYou're surprized? PinPopular
Matt T Heffron19-Feb-13 7:12
professionalMatt T Heffron19-Feb-13 7:12 
The results seem pretty obvious to me.
The comparison of the Types is just an equality of references to the Type objects (Object.ReferenceEquals which should compile to pointer comparison).
The comparison of names requires a string comparison for each case.
GeneralMy vote of 4 Pin
not_starman19-Feb-13 5:45
not_starman19-Feb-13 5:45 
GeneralMy vote of 2 Pin
Carlos190719-Feb-13 5:40
professionalCarlos190719-Feb-13 5:40 
GeneralRe: My vote of 2 Pin
Adam Zuckerman19-Feb-13 15:55
Adam Zuckerman19-Feb-13 15:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.