The logical-operators tag has no wiki summary.
31
votes
10answers
3k views
A clear, layman's explanation of the difference between | and || in c#?
Ok, so I've read about this a number of times, but I'm yet to hear a clear, easy to understand (and memorable) way to learn the difference between:
if (x | y)
and
if (x || y)
..within the ...
28
votes
2answers
11k views
Issues with ANDs and ORs (COBOL)
I have a homework assignment that need turned in tomorrow and I can't seem to get this one part right. See I was given a input file with a bunch of names, some of which I need to skip, with extra info ...
24
votes
3answers
12k views
R - boolean operators && and ||
According to the R language definition the difference between & and && (correspondingly | and ||) is that the former is vectorized while the later is not.
According to this site:
...
23
votes
8answers
5k views
23
votes
2answers
2k views
The written versions of the logical operators
This is the only place I've ever seen and, or and not listed as actual operators in C++. When I wrote up a test program in NetBeans, I got the red underlining as if there was a syntax error and ...
21
votes
8answers
20k views
What's the difference between & and && in MATLAB?
What is the difference between the & and && logical operators in MATLAB?
21
votes
5answers
7k views
C Preprocessor directives and boolean operators
I searched the site but did not find the answer I was looking for so here is a really quick question.
I am trying to do something like that :
#ifdef _WIN32 || _WIN64
#include <conio.h>
...
19
votes
5answers
660 views
Confused by use of double logical not (!!) operator [duplicate]
I have some C++ code that makes extensive use of !!. I'm kinda baffled because as far as I know !! is not a operator on it's own but two ! after each other. So that would mean that !!foo is the same ...
17
votes
2answers
10k views
Simple logical operators in BASH
I have a couple of variables and I want to check the following condition (written out in words, then my failed attempt at bash scripting):
if varA EQUALS 1 AND ( varB EQUALS "t1" OR varB EQUALS "t2" ...
17
votes
3answers
867 views
What happens when you logical not a float?
I assume this just returns an int. Is there anything else going on I should be aware of? C/C++ differences?
float a = 2.5;
!a; // What does this return? Int? Float?
16
votes
3answers
1k views
Is it possible to define {$IFDEF} for more than one directive at once?
Is it possible to define more than one conditional in one {$IFDEF} directive ?
I would like to have syntax like this:
{$IFDEF Condition1 OR Condition2} DoSomething; {$ENDIF}
{$IFDEF Condition1 AND ...
16
votes
5answers
3k 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 ...
14
votes
5answers
2k views
Is there any difference between && and & with bool(s)?
In C++, is there any difference between doing && (logical) and & (bitwise) between bool(s)?
bool val1 = foo();
bool val2 = bar();
bool case1 = val1 & val2;
bool case2 = val1 ...
14
votes
3answers
10k views
SQL Logic Operator Precedence: And and Or
Are the two statements below equivalent?
SELECT [...]
FROM [...]
WHERE some_col in (1,2,3,4,5) AND some_other_expr
and
SELECT [...]
FROM [...]
WHERE some_col in (1,2,3) or some_col in (4,5) AND ...
14
votes
7answers
429 views
unusual ternary operation
I was asked to perform this operation of ternary operator use:
$test='one';
echo $test == 'one' ? 'one' : $test == 'two' ? 'two' : 'three';
Which prints two (checked using php).
I am still not ...
14
votes
5answers
419 views
What kind of syntactic sugar is available in Perl to reduce code for l/rvalue operators vs. if statements?
There's a bunch out there, as Perl is a pretty sugary language, but the most used statements in any language is the combination of if statements and setting values. I think I've found many of them, ...
13
votes
7answers
1k views
Is there an Non-Short circuited logical “and” in C++?
tl;dr: Is there a non-short circuit logical AND in C++ (similar to &&)?
I've got 2 functions that I want to call, and use the return values to figure out the return value of a 3rd composite ...
13
votes
6answers
1k views
&&= and ||= operators [duplicate]
Possible Duplicates:
Why doesn't Java have compound assignment versions of the conditional-and and conditional-or operators? (&&=, ||=)
Why does a “&&=” Operator ...
13
votes
3answers
257 views
JavaScript coding technique or bad code?
While debugging javascript written by someone else, I came across some code that I've not seen before. Here's a sample:
function doSomething() {
//doing something here...
}
function doItNow() {
...
11
votes
3answers
251 views
Are the members in the statement with AND operator always checked in the given order?
I would like to know if the following code may ever fail with the access violation or if it's safe. Is the first member of the statement with AND operator always checked as first or may be (by some ...
10
votes
5answers
2k 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 ...
10
votes
4answers
989 views
Logical Operators, || or OR?
I remember reading a while back in regards to logical operators that in the case of OR, using || was better than or (or visa versa).
I just had to use this in my project when it came back to me but I ...
10
votes
3answers
4k views
PHP: 'or' statement on instruction fail: how to throw a new exception?
Everyone here should know the 'or' statemens, usually glued to an die() command:
$foo = bar() or die('Error: bar function return false.');
The most of the times we see something like:
...
10
votes
2answers
362 views
Logical AND + assignment in c++, safe?
I just learned this great pattern (from javascript actually) and I would like to apply it to my c++ code.
To explain the pattern, let's say I am representing a string as a linked list of these:
...
10
votes
1answer
370 views
10
votes
1answer
2k views
Why does C not have a logical assignment operator?
Possible Duplicate:
Why doesn’t c++ have &&= or ||= for booleans?
I had the need to code a statement of the form
a = a || expr;
where expr should be evaluated and the ...
9
votes
14answers
895 views
Which side (left or right) of && (and) operator evaluated in C++
Which order is the and && operator evaluated
For example the following code
if (float alpha = value1-value2 && alpha > 0.001)
//do something
threw an exception that alpha is ...
9
votes
7answers
912 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 ...
9
votes
6answers
508 views
Checking the “boolean” result of an “int” type
I'm learning java, coming from C and I found an interesting difference between languages with the boolean type. In C there is no bool/ean so we need to use numeric types to repersent boolean logic (0 ...
8
votes
9answers
2k views
What is wrong with the short circuit logic in this Java code?
Why doesn't func3 get executed in the program below? After func1, func2 doesn't need to get evaluated but for func3, shouldn't it?
if (func1() || func2() && func3()) {
...
8
votes
4answers
490 views
Java chained inequality if (5<i<10)
Is there any operator or trick for such operation?
Or is it necessary to use
if(5<i && i<10)
?
8
votes
3answers
11k views
What is the difference between logical and conditional AND, OR in C#? [duplicate]
Possible Duplicate:
What is the diffference between the | and || or operators?
Logical AND and OR:
(x & y)
(x | y)
Conditional AND and OR:
(x && y)
(x || y)
I've only ...
8
votes
5answers
827 views
Is there any wisdom behind “and”, “or” operators in Ruby?
I wonder why ruby give and, or less precedence than &&, || , and assign operator? Is there any reason?
8
votes
1answer
239 views
Moving out before brackets with XOR
If I had the sum of products like z*a + z*b + z*c + ... + z*y, it would be possible to move the z factor, which is the same, out before brackets: z(a + b + c + ... y).
I'd like to know how it is ...
7
votes
3answers
531 views
Performance difference in for loop condition?
I have a simple question that I am posing mostly for my curiousity.
What are the differences between these two lines of code? (in C++)
for(int i = 0; i < N, N > 0; i++)
for(int i = 0; i < ...
7
votes
7answers
1k views
Overloading logical operators considered bad practice?
Is it a bad idea to overload &&, || or comma operator and Why?
7
votes
4answers
568 views
!! c operator, is a two NOT?
I reading this code, and have this line
switch (!!up + !!left) {
what is !! operator ? two logical NOT ?
7
votes
7answers
3k views
Java short circuit evaluation
I thought Java had short circuit evaluation, yet this line is still throwing a null pointer exception:
if( (perfectAgent != null) && (perfectAgent.getAddress().equals(entry.getKey())) ) {
...
7
votes
7answers
1k views
short hand for chaining logical operators in javascript?
Is there a better way to write the following conditional in javascript?
if ( value == 1 || value == 16 || value == -500 || value == 42.42 || value == 'something' ) {
// blah blah blah
}
I hate ...
7
votes
3answers
227 views
when to use === operator check in JavaScript? [duplicate]
Possible Duplicate:
Javascript === vs == : Does it matter which “equal” operator I use?
As the title states; when should you use the === operator check when using JavaScript, ...
7
votes
5answers
100 views
precedence of ~ and ++ in java
consider this code snippet
int j = 7;
System.out.println(Integer.toBinaryString(j));
j = ~j++;
System.out.println(Integer.toBinaryString(j));
prints
111
11111111111111111111111111111000
what i ...
7
votes
5answers
462 views
Database design / normalization structure needs to contain ANDs, ORs, optional elements and their relationships
I want to store the details of college courses in a (MySql) database but I'm not sure how to maintain the relationship between modules and selections.
Basically, a course can have mandatory section, ...
6
votes
6answers
366 views
What's the difference between “<>” and “!=”?
Normally I would use !=, then when I saw this sign <> it means not equal to as well.
After that, I went to search on Google, what's the difference between <> and !=. But I could not find ...
6
votes
3answers
773 views
Is operator && strict in Haskell?
For example, I have an operation fnB :: a -> Bool that does not sense until fnA :: Bool returns False. In C I may compose these two operations in one if block:
if( fnA && fnB(a) ){ ...
6
votes
1answer
367 views
Meaning of <<= and |=
What is the meaning of <<= and |= in C?
I recognise << is bitshift etc. but I don't know what these are in combination.
6
votes
2answers
223 views
Python: Avoid short circuit evaluation
This is a problem that occured to me while working on a Django project. It's about form validation.
In Django, when you have a submitted form, you can call is_valid() on the corresponding form object ...
6
votes
1answer
826 views
Logical comparisons: Is left-to-right evaluation guaranteed?
Is left-to-right evaluation of logical comparison operators (&& ||) guaranteed?
Let's say I have this:
SDL_Event event;
if (SDL_PollEvent(&event)) {
if (event.type == SDL_QUIT) {
...
6
votes
2answers
42 views
Name for the logical operator A & (~B)
Is there a name for logical AND with the negation (~) of the second variable, i.e:
A & (~B)
The truth table for such operation is:
0 & (~0) = 0
0 & (~1) = 0
1 & (~0) = 1
1 & ...
5
votes
4answers
200 views
Why is {} < function(){}?
While I was messing around with truth tables in JavaScript, I noticed that the following evaluates to true:
var a, b, c;
a = {};
b = function(){};
c = a < b;
console.log(c);
Why?
I've only ...
5
votes
5answers
545 views
What is the point of the logical operators in C?
I was just wondering if there is an XOR logical operator in C (something like && for AND but for XOR). I know I can split an XOR into ANDs, NOTs and ORs but a simple XOR would be much better. ...

