Newbie question. How to calculate the value of the formula A f B, where f - the binary function OR or AND?
Thanks for answers :)
|
Newbie question. How to calculate the value of the formula A f B, where f - the binary function OR or AND? Thanks for answers :)
| |||||||||
feedback
|
|
Logical OR is Example:
Then X will be true when either A and B are true or if C is true or if D is not true (i.e. false). If you wanted bit-wise AND/OR/NOT, you would use | |||
|
feedback
|
|
There is a distinction between the conditional operators && and || and the boolean operators & and |. Mainly it is a difference of precendence (which operators get evaluated first) and also the && and || are 'escaping'. This means that is a sequence such as...
If cond1 is false, neither cond2 or cond3 are evaluated as the code rightly assumes that no matter what their value, the expression cannot be true. Likewise...
If cond1 is true, neither cond2 or cond3 are evaluated as the expression must be true no matter what their value is. The bitwise counterparts, & and | are not escaping. Hope that helps. | |||||||
feedback
|
| |||
|
feedback
|
|
I'm not sure if this answers your question, but for example:
| |||||||||||||
feedback
|
|
Use '&&' for AND and use '||' for OR, for example:
| |||
|
feedback
|
|
If what interests you is bitwise operations look here for a brief tutorial : http://weblogs.asp.net/alessandro/archive/2007/10/02/bitwise-operators-in-c-or-xor-and-amp-amp-not.aspx .bitwise operation perform the same operations like the ones exemplified above they just work with binary representation (the operation applies to each individual bit of the value) If you want logical operation answers are already given. | |||
|
feedback
|
|
many answers above, i will try a different way: if you are looking for bitwise operations use only one of the marks like: 3 & 1 //==1 - and 4 | 1 //==5 - or | |||
|
feedback
|
|
&& it's operation return true only if both operand it's true which implies
|| it's operation return true if one or both operand it's true which implies
if You write
in result you have
Therefore, the which I wrote above is used with respect to every pair of bits | ||||
feedback
|