
466 | Appendix B
Appendix B
Operator Precedence
The following is a list of the C++ operators, which are covered in the manual. Operators are binary unless
marked unary.
Operators Associativity
:: (scope resolution) Left to right
() [] -> . Left to right
++(postfix) --(postfix) Right to left
! +(unary) -(unary) new delete (cast)
sizeof *(unary) &(unary) Right to left
->* .* Left to right
* / % Left to right
+ - Left to right
<< >> Left to right
< <= > >= Left to right
== != Left to right
& Left to right
^ Left to right
| Left to right
&& Left to right
|| Left to right
78828_APPX_DaleLab 5/29/09 11:27 AM Page 466