Priority of C++ operators "&" and "->" - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T20:17:05Z http://stackoverflow.com/feeds/question/154802 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/154802/priority-of-c-operators-and 2 Priority of C++ operators "&" and "->" stung 2008-09-30T20:13:02Z 2008-09-30T21:36:25Z <p>Given the following:</p> <pre><code>&amp;row-&gt;count </code></pre> <p>Would &amp;(row->count) be evaluated or (&amp;row)->count be evaluated in C++?</p> <p>EDIT: Here's a great <a href="http://www.cppreference.com/wiki/operator_precedence" rel="nofollow">link</a> for C++ precedence.</p> http://stackoverflow.com/questions/154802/priority-of-c-operators-and/154811#154811 1 Answer by Gamecat for Priority of C++ operators "&" and "->" Gamecat 2008-09-30T20:14:56Z 2008-09-30T20:29:23Z <p>This is already asked. But <a href="http://www.cppreference.com/wiki/operator_precedence" rel="nofollow">here</a> is a link.</p> <p>Edit: Ok <a href="http://stackoverflow.com/questions/113992/c-binary-operators-order-of-precedence">this</a> question is very similar. And possibly there is an other one.</p> http://stackoverflow.com/questions/154802/priority-of-c-operators-and/154817#154817 0 Answer by andy.gurin for Priority of C++ operators "&" and "->" andy.gurin 2008-09-30T20:15:30Z 2008-09-30T20:15:30Z <p>&amp;(row->count)</p> http://stackoverflow.com/questions/154802/priority-of-c-operators-and/154820#154820 6 Answer by Firas for Priority of C++ operators "&" and "->" Firas 2008-09-30T20:16:11Z 2008-09-30T20:16:11Z <p><a href="http://www.cppreference.com/wiki/operator_precedence" rel="nofollow">&amp;(row->count)</a></p> http://stackoverflow.com/questions/154802/priority-of-c-operators-and/154827#154827 0 Answer by mxg for Priority of C++ operators "&" and "->" mxg 2008-09-30T20:17:14Z 2008-09-30T20:17:14Z <p>-> has a higher priority than &amp; (address of). So your expression would be evalutated as &amp;(row->count)</p> http://stackoverflow.com/questions/154802/priority-of-c-operators-and/154838#154838 1 Answer by Mark for Priority of C++ operators "&" and "->" Mark 2008-09-30T20:19:29Z 2008-09-30T20:19:29Z <p>C operator precendence is explained <a href="http://www.difranco.net/cop2220/op-prec.htm" rel="nofollow">here</a></p> <p>As per the table, -> is higher priority than the &amp; operator, so it's &amp;(row->count)</p> http://stackoverflow.com/questions/154802/priority-of-c-operators-and/154854#154854 13 Answer by Michael Burr for Priority of C++ operators "&" and "->" Michael Burr 2008-09-30T20:21:36Z 2008-09-30T20:21:36Z <p>As far as precedence rules go, I've always liked the one put forth by Steve Oualline in "Practical C":</p> <blockquote> <p>There are fifteen precedence rules in C (&amp;&amp; comes before || comes before ?:). The practical programmer reduces these to two:</p> <p>1) Multiplication and division come before addition and subtraction. </p> <p>2) Put parentheses around everything else.</p> </blockquote> http://stackoverflow.com/questions/154802/priority-of-c-operators-and/155201#155201 1 Answer by Marcin for Priority of C++ operators "&" and "->" Marcin 2008-09-30T21:36:25Z 2008-09-30T21:36:25Z <p>May I suggest that you resolve such questions using a test programme? That has the advantage that you will know for sure that the answer is correct for your implementation, and you are not exposed to the risk of badly answered questions.</p>