int main()
{
int i=3;
(i << 1);
cout << i; //Prints 3
}
I expected to get 6 because of shifting left one bit. Why does it not work?
I expected to get 6 because of shifting left one bit. Why does it not work? |
||||
|
Because the bit shift operators return a value. You want this:
The shift operators don't shift "in place". You might be thinking of the other version. If they did, like a lot of other C++ binary operators, then we'd have very bad things happen.
|
|||
|
|
|
You need to assign
Alternatively, you can use <<= as an assignment operator:
|
||||
|
|
|
You're not assigning the value of the expression Try:
Or (same):
|
|||
|
|
|
You need to reassign the value back to |
|||
|
|
|
Reason:
For your intention, you can use:
|
||||
|
|
cout << i << 1 << endl;andcout << (i << 1) << endl;(and don't forget to put a newline at the end of your output). – Jonathan Leffler Jun 16 '11 at 5:26