Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
10answers
2k 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 ...
13
votes
6answers
829 views

&&= and ||= operators [closed]

Possible Duplicates: Why doesn't Java have compound assignment versions of the conditional-and and conditional-or operators? (&&=, ||=) Why does a “&&=” Operator ...
12
votes
3answers
190 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 ...
12
votes
5answers
189 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, ...
12
votes
7answers
302 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 ...
12
votes
2answers
412 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 ...
12
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
5answers
3k 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> ...
10
votes
4answers
361 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 ...
10
votes
2answers
206 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" ...
10
votes
5answers
2k views

Why is there no logical xor in JavaScript?

Why is there no logical xor in JavaScript?
9
votes
2answers
219 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: ...
9
votes
7answers
639 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 ...
8
votes
14answers
580 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 ...
8
votes
9answers
1k 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()) { ...
7
votes
5answers
321 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, ...
7
votes
1answer
90 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
4answers
162 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 ...
7
votes
3answers
172 views

when to use === operator check in JavaScript? [closed]

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
3answers
434 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
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
3answers
362 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
184 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
7answers
434 views

Overloading logical operators considered bad practice?

Is it a bad idea to overload &&, || or comma operator and Why?
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
6answers
316 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
1answer
485 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 ...
6
votes
7answers
625 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 ...
6
votes
5answers
535 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
5answers
460 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?
6
votes
3answers
2k 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: ...
5
votes
4answers
121 views

Is (4 > y > 1) a valid statement in C++? How do you evaluate it if so?

Is that a valid expression? If so, can you rewrite it so that it makes more sense? For example, is it the same as (4 > y && y > 1)? How do you evaluate chained logical operators?
5
votes
4answers
157 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
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
6answers
390 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. ...
4
votes
3answers
145 views

Regex for “AND NOT” operation

I'm looking for a general regex construct to match everything in pattern x EXCEPT matches to pattern y. This is hard to explain both completely and concisely...see Material Nonimplication for a formal ...
4
votes
4answers
92 views

Difference between AND [and] &&

Given the statement: if($value && array_key_exists($value, $array)) { $hello['world'] = $value; } Would it be best to use the logical operator AND as opposed to ...
4
votes
5answers
207 views

XPath: logical OR

Please help to use the logical OR operator in XPATH and select one request from these two: 1) .//span[@class=\'fob12\'] 2) .//p[@class=\'fob12\'] They differ in tag only.
4
votes
1answer
122 views

Usage of or operator in php?

The following code: $result = (false or true); echo("With extra parentheses: ".($result?"true":"false")); $result = false or true; echo("<br />With no parentheses: ...
4
votes
3answers
278 views

What is the result of Perl's &&?

When I try this: $a = 1; $b = 2; print ($a && $b) . "\n"; The result is 2. Why?
4
votes
6answers
168 views

&& Operation in .NET

Which one out of the following two should be preferred while doing && operation on two values. if (!StartTime.Equals(DateTime.MinValue) && ...
4
votes
5answers
219 views

What does (myVar && foo()) mean in JavaScript?

(myVar && foo()) What does the above code mean? What is it equivalent to? I think it runs on a single line.
4
votes
7answers
1k 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())) ) { ...
4
votes
3answers
2k 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 ...
3
votes
2answers
31 views

setting variables using logcial OR

$db_hased_pw = $result["password"] || false; I understand the usage of this line of code, but WHEN will it evaluate as false? will $db_hased_pw equal false only when $result["password"] is ...
3
votes
2answers
101 views

Logical operator AND with php regular expression

I'd like to use a kind of logical operator "AND" in my regular expression. I tried this: (?=exp1)(?=exp2) But in PHP ?= doesn't work and need to write my program in PHP language. Is there another ...
3
votes
1answer
64 views

Vectorizing the concatenation of binary operations

Say I have a cell array, that holds a stack of logical matrices, e.g. matrices = [225x400 logical] [225x400 logical] .... [225x400 logical] The cell array can potentially hold ...
3
votes
1answer
118 views

bash operator for logical defined-or

Is there an equivalent Bash operator to Perl's logical defined-or? Something akin to: $a = $a // $b; OR $a ||= $b;
3
votes
2answers
991 views

using multiple criteria in subset function and logical operators in R

If I want to select a subset of data in R, I can use the subset function. I wanted to base an analysis on data that that was matching one of a few criteria, e.g. that a certain variable was either 1, ...
3
votes
1answer
194 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) { ...

1 2 3