I have such code:
if (a() && b != null) {
b.doSomething();
}
I need side effect of a() even if b is null. Is it guaranteed by C#? Or C# may omit a() call if b is null?
|
I have such code:
I need side effect of |
|||
| show 4 more comments |
|
Yes, Since the condition is evaluated from left to right, Here's an exact specification reference for you, from the C# Language Specification version 3.0. My emphases and elisions.
|
|||||||||||||||||||||
|
|
Yes, expressions are evaluated from left to right; so See the C# language spec (ECMA 334, paragraph 8.5):
|
|||||||||||||
|
|
The condition is evaluated from left to right. So |
|||
|
|
|
This is known as short circuit evaluation. |
|||
|
|
The left side of && is always evaluated. The right will only be evaluated if the left is true. So you should be fine. |
|||
|
|
|
According to MSDN:
|
|||
|
|
|
The logical condition in your if statement is composed from two logical operators first is |
|||
|
|
|
a() will always be called as it is the first thing to check in the if statement, even if b is null. |
|||
|
|
|
Boolean expressions may be fully evaluated or partially if the compiler infers that further evaluation will not modify the outcome.
If you rely on the side effects of b(), you are not getting what you want if the specific compiler implementation does smart boolean evaluation. I am not sure what the standard says about evaluating boolean expressions, but if you want readability of your source code, you better spell it out in full. It will increase readability.
|
||||
|
|
|
Since the conditions are evaluated left to right, |
|||
|
|
|
In addition to the best answer: evaluation of evaluation of In either case the first operand is always evaluated. You got to be extra careful to have side effects in second operand. |
||||
|
|
|
Yes, But "It is not important that your code works, It is important that your code is understandable". I prefer do like this:
|
|||
|
|
|
It depends on the priority of operation you want. Yes it is evaluated from left to right that means a() always executed before the rest. If you want b !=null to be always evaluated exchange their position. |
|||
|
|
|
&& condition run when both condition is true. So a() function render when b not equal to null. this is basic for all pro |
|||
|
|
bool aWasOk = a();,if(aWasOk && b != null). That eliminates most of the confusion, in my opinion. – Kobi Nov 23 '11 at 13:19