Tagged Questions
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 ...
19
votes
5answers
663 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 ...
4
votes
10answers
403 views
Why use logical operators when bitwise operators do the same?
Consider this condition:
(true & true & false & false & true) == true //returns: false
As you can see, the bitwise AND behavior is exactly like logical AND's:
(true && true ...
4
votes
5answers
672 views
Why is there a distinction between logical and bitwise operators in Java and C#?
Languages like i.e. Java and C# have both bitwise and logical operators.
Logical operators make only sense with boolean operands, bitwise operators work with integer types as well. Since C had no ...
0
votes
2answers
386 views
Implementing assembly logical 'not' instruction
So I have run into a problem in assembly language. I need a way to get the same desired result from the 'not' instruction by only using the 'and' and 'or' instructions. So if I have:
AL = 1011000
...
3
votes
1answer
96 views
Bitwise operations evaluating to long
I've been converting some Java code to C# and ran into a little pickle. All the documentation on MSDN suggests that all bitwise operations return the type that is being operated on. See: ...
1
vote
3answers
684 views
Checking even or odd `1` bits in a number
I want to check if number has all even or odd bits set to one and only them. For eg.:
Number 42 is correct, because in a binary code 101010 it has all and only even bits sets to 1.
Number 21 is also ...
1
vote
4answers
1k views
Is there a difference between using a logical operator or a bitwise operator in an if block in Java?
The contents of both of the following if blocks should be executed:
if( booleanFunction() || otherBooleanFunction() ) {...}
if( booleanFunction() | otherBooleanFunction() ) {...}
So what's the ...
2
votes
3answers
889 views
CUDA: Why are bitwise operators sometimes faster than logical operators?
When I am down to squeezing the last bit of performance out of a kernel, I usually find that replacing the logical operators (&& and ||) with bitwise operators (& and |) makes the kernel a ...
1
vote
2answers
743 views
C# - | and & operators?
edit: My main question now is why these two operators need to be overloaded to use the && and || operators. Wouldn't the short-circuit operators take the true or false values of the objects ...
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 ...
2
votes
3answers
3k views
Lua - Bitwise Logical Operations
How can I implement bitwise operators in Lua language?
Specifically, I need a XOR operator/method.
Would love to hear if you've ever dealt with logical operation in Lua.
[SOLVED] - Here's what I ...
2
votes
6answers
1k views
When should I use Bitwise operator?
OK, I read following pages and I understand the differences between Bitwise and Logical.
difference between & and && in PHP
Reference - What does this symbol mean in PHP?
However none of them ...
1
vote
1answer
69 views
What does this expression do?
Is there any interpretation of this expression in the decimal system? In other words, is it an efficient implementation of calculation using the logical operation in place of arithmetic operation?
1) ...
1
vote
3answers
2k views
Performing a logical not ! using only bitwise operations [duplicate]
Possible Duplicate:
Check if a number is non zero using bitwise operators in C.
Hello everyone,
I am working on a project and I need a little help with a function. We need to write a ...
2
votes
6answers
1k views
Logical NOT (!) operator won't work with bitwise statement
I am attempting to determine if I can compute the sum of two 32 bit integers without overflow, while making use of only certain bitwise and other operators. So, if the integers x and y can be added ...
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. ...
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 ...