vote up 13 vote down star

Is there ever a circumstance in which I would not want to use the AndAlso operator rather than the And operator? …or in which I would not want to use the OrElse operator rather than the Or operator?

flag

65% accept rate

3 Answers

vote up 10 vote down check

From MSDN:

Short-Circuiting Trade-Offs

Short-circuiting can improve performance by not evaluating an expression that cannot alter the result of the logical operation. However, if that expression performs additional actions, short-circuiting skips those actions. For example, if the expression includes a call to a Function procedure, that procedure is not called if the expression is short-circuited, and any additional code contained in the Function does not run. If your program logic depends on any of that additional code, you should probably avoid short-circuiting operators.

link|flag
1  
One could argue that relying on your logic code to run a function is obscure and your logic should be designed to not rely on that for clarity and maintainability. – Andrew Burns Sep 10 '08 at 20:48
I agree. The real lesson here is don't write code that doesn't clearly indicate it's side effects! – Bob King Sep 22 '08 at 22:42
vote up 5 vote down

Sure: if you want to make sure that both sides of the expression are evaluated. This might be the case if, for example, both sides are method calls that return booleans as a result of some other operation.

But in general, you should AndAlso/OrElse whenever you would use &&/|| in C/C++/C#, which of course is the vast majority of the time.

link|flag
vote up 0 vote down

You should probably read up on short circuit evaluation.

link|flag
1  
I think he just, or he wouldn't be asking the question. – Joel Coehoorn Sep 10 '08 at 18:55
That is fine, but I think the article I linked will help him understand the concept more. – Rich B Sep 10 '08 at 18:57

Your Answer

Get an OpenID
or

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