Answer by Mike Dunlavey for Two if conditions or one if with OR
Assuming each cond is about equally likely to be true as false, and assuming each cond takes one STU (significant time unit) then half the time the || will take 1 STU and half the time 2 STU, for...
View ArticleAnswer by Bert Heesbeen for Two if conditions or one if with OR
Too bad not everyone sees the difference between an Or (|) and a Condional Or (||). If in the second snippet an Or is used, there is no difference (both conditions are evaluated). Using a Conditional...
View ArticleAnswer by heijp06 for Two if conditions or one if with OR
If cond1 and cond2 are not simple booleans but properties or functions with side-effects then there is a difference because in the first version cond2 will always be evaluated and the side-effects will...
View ArticleAnswer by freak for Two if conditions or one if with OR
Here the performance difference will not be noticeable .But definitely the second one is better.1) The readablity is better for second.2) second snippet is more logical than first one .3) If we see IL...
View ArticleAnswer by Shrikant for Two if conditions or one if with OR
2nd option is more optimized.In first option it will always check for cond2.You can change second if to else if in option1 to optimize it.
View ArticleAnswer by Faizan S. for Two if conditions or one if with OR
Well, I don't know if it's appropriate but: It doesn't matter in this case.Do not too much of micro-optimizing.But to answer your question, stick with the readably one.The fastest solution would be...
View ArticleAnswer by Itay Karo for Two if conditions or one if with OR
The only difference is in cases where cond1 is true - so int the second example cond2 will not be tested.If cond1 is false cond2 will be tested in both cases.
View ArticleAnswer by Giorgi for Two if conditions or one if with OR
The performance gain will be really unnoticeable but the second one is much more readable and logical than the first one.
View ArticleAnswer by Darin Dimitrov for Two if conditions or one if with OR
This is micro-optimization. Pick the one that's more readable :return cond1 || cond2;
View ArticleTwo if conditions or one if with OR
I have a small doubtI have following codebool res= false;if(cond1){ res = true;}if(cond2){ res = true;}Instead of this if I put following codeif(cond1 || cond2){ res = true;}Which code snippet will be...
View Article