I have the following code and I can't understand what does it mean:
var1 |= var2>0 ? 1 : 2;
Anyone can help me please!
|
I have the following code and I can't understand what does it mean:
Anyone can help me please! |
||||
|
All the However since C++ allows |
|||||||||||||||||
|
|
|
|||
|
|
|
|
||||
|
As others have said it is short for
Instead of saying:
you might see:
|
|||
|
|
|
Integers can be represented in binary, so that each digit (bit, switch) is 1 (on) or 0 (off):
Bitwise OR combines two numbers by "merging" the two sets of bits:
If a bit is 1 in EITHER of the input numbers, then it will be 1 in the result. Compare with bitwise AND, which finds the "overlap" of the two sets of bits:
If a bit is 1 in BOTH of the input numbers, then it will be 1 in the result. If the numbers are in variables a and b, you can place the the bitwise OR/AND results into a new variable c:
Often the result needs to be placed into one of the two variables, i.e.
So as a shorthand, you can do this in a single step:
|
|||
|
|
|
As other people before me have mentioned, it means you'll end up with assignments by bitwise OR. Bitwise OR can be illustrated by taking the left-hand and right-hand side bit-patterns and put them on top of eachother. In each column: 0 + 0 gives 0, 1 + 0 gives 1, 0 + 1 gives 1, 1 + 1 gives 1. Here's an example of bitwise OR and the resulting bit pattern: var1(11) |= var2(14) --> var1(15)
1011 (11)
OR 1110 (14)
= 1111 (15)
|
|||
|
|
int var1, var2. – polygenelubricants May 9 '10 at 7:08