2
votes
3answers
48 views
Do all parts of a SQL SERVER expression using ‘OR’ get evaluated?
Given:
WHERE (@Id Is NULL OR @Id = Table.Id)
If @Id is null: the expression evaluates to true. Does the second part @Id = Table.Id still get considered? or is it sufficient that …
4
votes
8answers
332 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 & As …
2
votes
5answers
232 views
This is useful but I’m not sure why it works
protected override Boolean IsValid(String propertyValue)
{
return !String.IsNullOrEmpty(propertyValue) && propertyValue.Trim().Length > 0;
}
This C# validation met …
0
votes
4answers
73 views
How can this behavior be acomplished? Python “short circuting” test
Hello all,
I have the following code:
def testGeodatabase(self):
geodatabaseList = self.gp.ListWorkspaces("*","ALL")
for x in geodatabaseList:
if x == self.output …
7
votes
5answers
243 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) = …
13
votes
17answers
827 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?
Relate …
6
votes
6answers
242 views
What’s the difference between & and && in MATLAB?
What is the difference between the & and && logical operators in MATLAB?
0
votes
5answers
255 views
EXC_BAD_ACCESS on iPhone when using “obj != nil
I've got a very simple line of code in Objective-C:
if ((selectedEntity != nil) && [selectedEntity isKindOfClass:[MobileEntity class]])
Occasionally and for no reason I …
19
votes
16answers
957 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 …
0
votes
1answer
131 views
Explain the following from Accelerated C++ please
I don't understand the following excerpt from Accelerated C++:
Starting at
Because || is left-associative, and
because of the relative precedence of
||,== ,and -,
r …
1
vote
4answers
532 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 …
11
votes
10answers
823 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? …
6
votes
17answers
1k 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 IsNullOrEmp …
1
vote
7answers
286 views
Short circuit error handling in C
I was wondering if there was a better way of handling the case in C where you want to exit a function as soon as you encounter an error in a series of expressions. (in this case, …
3
votes
3answers
435 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 …
