I can do this int c= 0xF^0xF; cout << c;
int c= 0xF^0xF; cout << c;
But cout << 0xF^0xF; won't compile. Why?
cout << 0xF^0xF;
According to C++ Operator Precedence, operator<< has higher precedence than operator^, so cout << 0xF^0xF; is equivalent with:
operator<<
operator^
(cout << 0xF) ^ 0xF;
cout << 0xF returns cout (i.e. a std::ostream), which can't be used as the operand of operator^.
cout << 0xF
cout
std::ostream
You could add parentheses to specify the correct precedence:
cout << (0xF ^ 0xF);
Copyright © 2021 Jogjafile Inc.
According to C++ Operator Precedence,
operator<<
has higher precedence thanoperator^
, socout << 0xF^0xF;
is equivalent with:cout << 0xF
returnscout
(i.e. astd::ostream
), which can't be used as the operand ofoperator^
.You could add parentheses to specify the correct precedence: