Tagged Questions

A feature of some languages to skip certain code at runtime that doesn't affect the outcome, especially when testing compound conditions

learn more… | top users | synonyms

30
votes
10answers
4k views

Is the SQL WHERE clause short-circuit evaluated?

For example: SELECT * FROM Table t WHERE @key IS NULL OR (@key IS NOT NULL AND @key = t.Key) If @key IS NULL evaluates to true, is @key IS NOT NULL AND @key = t.Key evaluated? If No, why not? ...
24
votes
6answers
4k views

Is short-circuiting boolean operators mandated in C/C++? And evaluation order?

Does the ANSI standard mandate logic operators to be short-circuited, in either C or C++? I'm confused for I recall the K&R book saying your code shouldn't depend on these operations being short ...
21
votes
17answers
2k views

Do all programming languages have boolean short-circuit evaluation?

In the PHP code if(a() && b()) when the first argument is false, b() will not be evaluated. Similarly, in if (a() || b()) when the first argument is true, b() will not be evaluated.. ...
18
votes
4answers
629 views

Why does conditional AND (&&) appear to be non short-circuiting in this case?

While performing a check if there's a camera present and enabled on my windows mobile unit I encountered something I don't understand. The code looks like this: public static bool CameraP(){ ...
17
votes
17answers
2k views

Why would a language NOT use Short-circuit evaluation?

Why would a language NOT use Short-circuit evaluation? Are there any benefits of not using it? I see that it could lead to some performances issues... is that true? Why? Related question : ...
15
votes
3answers
349 views

Why are there no lifted short-circuiting operators on `bool?`?

Why doesn't bool? support lifted && and ||? They could have lifted the true and false operators which would have indirectly added lifted && and ||. The operators | and & are ...
14
votes
5answers
587 views

Is there anything like “std::and” or “std::or”?

Given a container of boolean values (An example is std::vector<bool>), is there a standard function that returns true if all the values are true ("and") or true if at least one value is true ...
13
votes
2answers
122 views

Does bitwise-or guarantee an evaluation ordering?

Say I have this code: unsigned int func1(); unsigned int func2(); unsigned int func3(); unsigned int x = func1() | func2() | func3(); Does C++ guarantee that func1() will be called first, then ...
13
votes
11answers
2k views

In C++, why does true && true || false && false == true?

I'd like to know if someone knows the way a compiler would interpret the following code: #include <iostream> using namespace std; int main() { cout << (true && true || false ...
13
votes
7answers
6k views

What's the difference between & and && in MATLAB?

What is the difference between the & and && logical operators in MATLAB?
12
votes
15answers
2k views

I don't like this… Is this cheating the language?

I have seen something like the following a couple times... and I hate it. Is this basically 'cheating' the language? Or.. would you consider this to be 'ok' because the IsNullOrEmpty is evaluated ...
11
votes
5answers
334 views

Does comparing to Math.Min or Math.Max short-circuit?

When comparing to a minimum or maximum of two numbers/functions, does C# short-circuit if the case is true for the first one and would imply truth for the second? Specific examples of these cases are ...
11
votes
1answer
228 views

Short-circuiting while instantiating template?

Consider this code snippet, template<bool b> struct other { static const bool value = !b; }; template<bool b> struct test { static const bool value = b || other<b>::value; ...
11
votes
2answers
946 views

Why doesn't Java have compound assignment versions of the conditional-and and conditional-or operators? (&&=, ||=)

So for binary operators on booleans, Java has &, |, ^, && and ||. Let's summarize what they do briefly here: JLS 15.22.2 Boolean Logical Operators &, ^, and | JLS 15.23 ...
11
votes
10answers
1k views

Calling methods inside if() - C#

I have a couple of methods that return a bool depending on their success, is there anything wrong with calling those methods inside of the IF() ? //&& makes sure that Method2() will only get ...
10
votes
1answer
261 views

Can someone explain this C++ comma operator short-circuiting example?

Can someone explain this C++ comma operator short-circuiting example? bIsTRUE = true, false, true; bIsFALSE = (true, false), true; bIsAlsoTRUE = ((true, false), true); Why does the second ...
10
votes
2answers
389 views

Do &= and |= short-circuit in Java?

In other words, do the following two statements behave the same way? isFoobared = isFoobared && methodWithSideEffects(); isFoobared &= methodWithSideEffects(); I realize I could just ...
10
votes
5answers
825 views

What is the difference between Perl's ( or, and ) and ( ||, && ) short-circuit operators?

Which of these subroutines is not like the other? sub or1 { my ($a,$b) = @_; return $a || $b; } sub or2 { my ($a,$b) = @_; $a || $b; } sub or3 { my ($a,$b) = @_; return $a ...
9
votes
4answers
152 views

Ada short-circuit control forms

Whats the meaning of x AND THEN y AND z is it x AND THEN (y AND z) (y, z gets never evaluated if x is FALSE) or (x AND THEN y) AND z (if x is FALSE, y is skipped, but its possible that z is ...
8
votes
7answers
582 views

SQL Server Conditional Flow

If I write two SELECT statements in a IF EXISTS condition with a AND clause in between these select queries, does both queries get executed even if the first SELECT returns false? IF EXISTS ...
7
votes
3answers
294 views

Does c# ?? operator short circuit?

When using the ?? operator in C#, does it short circuit if the value being tested is not null? Example: string test = null; string test2 = test ?? "Default"; string test3 = test2 ?? test.ToLower(); ...
7
votes
5answers
1k views

How to avoid short-circuit evaluation on

I'm working with Ruby on Rails and would like to validate two different models : if (model1.valid? && model2.valid?) ... end However, "&&" operator uses short-circuit evaluation ...
6
votes
4answers
178 views

short circuiting and parenthesis

Does it matter how I group subexpressions when dealing with a single short-circuiting operator? a && b && c && d a && (b && (c && d)) (a && b) ...
6
votes
5answers
275 views

When to prefer `and` over `andalso` in guard tests

I am curious why the comma ‹,› is a shortcut for and and not andalso in guard tests. Since I'd call myself a “C native” I fail to see any shortcomings of short-circuit boolean evaluation. I compiled ...
6
votes
7answers
311 views

Is relying on && short-circuiting safe in .NET?

Assume myObj is null. Is it safe to write this? if(myObj != null && myObj.SomeString != null) I know some languages won't execute the second expression because the && evaluates ...
6
votes
5answers
1k views

Haskell prime test

I'm new to Haskell, and I'm trying a bit: isPrime :: Integer->Bool isPrime x = ([] == [y | y<-[2..floor (sqrt x)], mod x y == 0]) I have a few questions. Why when I try to load the .hs, ...
6
votes
2answers
689 views

python boolean expression not “short-circuit”?

For example: def foo(): print 'foo' return 1 if any([f() for f in [foo]*3]): print 'bar' I thought the above code should output: foo bar instead of : foo foo foo bar Why ? how can ...
6
votes
4answers
258 views

How can I query 'between' numeric data on a not numeric field?

I've got a query that I've just found in the database that is failing causing a report to fall over. The basic gist of the query: Select * From table Where IsNull(myField, '') <> '' And ...
6
votes
1answer
139 views

Is there a Python idiom for evaluating a list of functions/expressions with short-circuiting?

I wrote a simple script to solve a "logic puzzle", the type of puzzle from school where you are given a number of rules and then must be able to find the solution for problems like "There are five ...
6
votes
2answers
934 views

PHP short circuit lazy evaluation, where is it in the php.net manual?

Sorry if this sounds like a really silly question. But I Googled the web and also Googled specifically both the php.net site and the stackoverflow.com site. I know PHP does short circuit lazy ...
6
votes
5answers
537 views

Short circuiting statement evaluation — is this guaranteed? [C#]

Quick question here about short-circuiting statements in C#. With an if statement like this: if (MyObject.MyArray.Count == 0 || MyObject.MyArray[0].SomeValue == 0) { //.... } Is it guaranteed ...
6
votes
4answers
1k views

Does Objective-C use short-circuit evaluation?

I tried something along the lines of: if(myString != nil && myString.length) { ... } And got: -[NSNull length]: unrecognized selector sent to instance Does Objective-C not short-circuit ...
5
votes
10answers
282 views

Does Java check all arguments in “&&” (and) operator even if one of them is false?

I have such code: if(object != null && object.field != null){ object.field = "foo"; } Assume that object is null. Does this code result in nullPointerException or just if statement ...
5
votes
4answers
133 views

Shortcircuiting: OrElse combined with Or

If I have the following ... a OrElse b ... and a is True then clearly b is never evaluated. But if I add an Or, then what? a OrElse b Or c Does/should c get evaluated? And what if I put in some ...
5
votes
3answers
205 views

Can I force my own short-circuiting in a method call?

Suppose I want to check a bunch of objects to make sure none is null: if (obj != null && obj.Parameters != null && obj.Parameters.UserSettings != null) { // do something ...
5
votes
9answers
809 views

Why use short-circuit code?

Related Questions: Benefits of using short-circuit evaluation, Why would a language NOT use Short-circuit evaluation?, Can someone explain this line of code please? (Logic & Assignment operators) ...
4
votes
4answers
174 views

Python equivalent of Perl's idiom do this or that, usually known as “or die”?

IN Perl it's quite common to do things like function() || alternative(). If the first returns false it will run the second one. How can this be easily implemented in Python? Update Examples ...
4
votes
6answers
139 views

“if var and var2 == getSomeValue()” in python - if the first is false, is the second statement evaluated?'

I have some code like this: if var: if var2 == getSomeValue() This could be in a single expression. if var and var2 == getSomeValue(): ...but getSomeValue() can only be called if var is ...
4
votes
2answers
162 views

Does Objective-C use short-circuit evaluation for messages to nil objects?

Following the usual short-circuit evaluation question, does short-circuit evaluation work for parameters built and sent against nil objects? Example: NSMutableArray *nil_array = nil; .... [nil_array ...
4
votes
3answers
268 views

Does MySQL Short Circuit the IF() function?

I need to query data from a second table, but only if a rare set of conditions in the primary table is met: SELECT ..., IF(a AND b AND c AND (SELECT 1 FROM tableb ...)) FROM tablea ... a, b, and c ...
4
votes
3answers
1k views

COALESCE - guaranteed to short-circuit?

From this question, a neat answer about using COALESCE to simplify complex logic trees. I considered the problem of short circuiting. For instance, in functions in most languages, arguments are ...
3
votes
1answer
41 views

Short-circuited operators and tail recursion

Let's say I have a simple function like this: int all_true(int* bools, int len) { if (len < 1) return TRUE; return *bools && all_true(bools+1, len-1); } This function can be ...
3
votes
5answers
84 views

Using short circuiting to get first non-null variable

What's the equivalent of the following (based in JS style) in PHP: echo $post['story'] || $post['message'] || $post['name']; So if story exists then post that; or if message exist post that, etc... ...
3
votes
2answers
68 views

Is there such a thing as short circuit multiplication?

We all know about short circuiting in logical expressions, i.e. when if ( False AND myFunc(a) ) then ... doesn't bother executing myFunc() because there's no way the if condition can be true. I ...
3
votes
2answers
41 views

Is relying on short-circuit evaluation good design?

Are there alternatives that would be more preferred?
3
votes
5answers
82 views

PHP if OR is the second part checked on true?

I know this must be a simple question, but I know that in PHP in a statement like this if ($a && $b) { do something } if $a is false PHP doesn't even check $b Well is the same thing true ...
3
votes
4answers
91 views

|| Operator, return when result is known?

I have a function similar to the following: def check return 2 == 2 || 3 != 2 || 4 != 5 end My question is, will Ruby perform all the comparisons even though the first is true, and thus the ...
3
votes
4answers
305 views

Scheme early “short circuit return”?

I'm trying to find out how I can do an "early return" in a scheme procedure without using a top-level if or cond like construct. (define (win b) (let* ((test (first (first b))) (result ...
3
votes
5answers
6k views

Java short style if evaluation

I can't find the relevant portion of the spec to answer this. In a conditional operator statement in Java, are both the true and false arguments evaluated? So could the following throw a ...
2
votes
6answers
141 views

Does Clojure have short-circuit logic?

In many languages, if you write something along the lines of if (foo() || bar() || foobar()) { /* do stuff */ } and foo() returns true, then bar() and foobar() will not be evaluated. Suppose I ...

1 2