In Visual Basic, is there a performance difference when using the IIf function instead of the If statement?
|
|
|
|
|
|
|
VB has the following
The first is basically C#'s ternary conditional operator and the second is its coalesce operator. /EDIT: Like in C#, VB's conditional
|
||
|
|
|
|
Better use If instead of IIf to use the type inference mechanism correctly (Option Infer On) In this example, Keywords is recognized as a string when I use If :
Otherwise, it is recognized as an Object :
|
||
|
|
|
|
@Konrad: Interesting, I never knew VB had that kind of If statement. |
||
|
|
|
|
Also, another big issue with the IIf is that it will actually call any functions that are in the arguments [1], so if you have a situation like the following:
It will actually throw an exception, which is not how most people think the function works the first time that they see it. This can also lead to some very hard to fix bugs in an application as well. [1] IIf Function - http://msdn.microsoft.com/en-us/library/27ydhh0d(VS.71).aspx |
||
|
|
|
|
IIf() runs both the true and false code. For simple things like numeric assignment, this isn't a big deal. But for code that requires any sort of processing, you're wasting cycles running the condition that doesn't match, and possibly causing side effects. @Dillio-O: Ternary expressions in C# do not execute both expressions. EDIT: Code illustration:
Outputs:
|
|||
|
|
|
|
On top of that, readability should probably be more highly preferred than performance in this case. Even if IIF was more efficient, it's just plain less readable to the target audience (I assume if you're working in Visual Basic, you want other programmers to be able to read your code easily, which is VB's biggest boon... and which is lost with concepts like IIF in my opinion). Also, "IIF is a function, versus IF being part of the languages' syntax"... which implies to me that, indeed, If would be faster... if for nothing else than that the If statement can be boiled down directly to a small set of opcodes rather than having to go to another space in memory to perform the logic found in said function. It's a trite difference, perhaps, but worth noting. |
||
|
|
|
|
IIF is an inline-if statement.
vs
In VB this is mimic-ing an language feature that it doesn't have. The IIF implies a type conversion or a remote call that the If-block doesn't. |
||
|
|
|
|
...as to why it can take as long as 6x, quoth the wiki:
Essentially IIf is the equivalent of a ternary operator in C++/C#, so it gives you some nice 1 line if/else type statements if you'd like it to. You can also give it a function to evaluate if you desire. |
||
|
|
|
|
According to this guy, IIf can take up to 6x as long as If/Then. YMMV. |
||
|
|
