Priority of C++ operators "&" and "->" - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T20:17:05Zhttp://stackoverflow.com/feeds/question/154802http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/154802/priority-of-c-operators-and2Priority of C++ operators "&" and "->"stung2008-09-30T20:13:02Z2008-09-30T21:36:25Z
<p>Given the following:</p>
<pre><code>&row->count
</code></pre>
<p>Would &(row->count) be evaluated or (&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#1548111Answer by Gamecat for Priority of C++ operators "&" and "->"Gamecat2008-09-30T20:14:56Z2008-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#1548170Answer by andy.gurin for Priority of C++ operators "&" and "->"andy.gurin2008-09-30T20:15:30Z2008-09-30T20:15:30Z<p>&(row->count)</p>
http://stackoverflow.com/questions/154802/priority-of-c-operators-and/154820#1548206Answer by Firas for Priority of C++ operators "&" and "->"Firas2008-09-30T20:16:11Z2008-09-30T20:16:11Z<p><a href="http://www.cppreference.com/wiki/operator_precedence" rel="nofollow">&(row->count)</a></p>
http://stackoverflow.com/questions/154802/priority-of-c-operators-and/154827#1548270Answer by mxg for Priority of C++ operators "&" and "->"mxg2008-09-30T20:17:14Z2008-09-30T20:17:14Z<p>-> has a higher priority than & (address of). So your expression would be evalutated as &(row->count)</p>
http://stackoverflow.com/questions/154802/priority-of-c-operators-and/154838#1548381Answer by Mark for Priority of C++ operators "&" and "->"Mark2008-09-30T20:19:29Z2008-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 & operator, so it's &(row->count)</p>
http://stackoverflow.com/questions/154802/priority-of-c-operators-and/154854#15485413Answer by Michael Burr for Priority of C++ operators "&" and "->"Michael Burr2008-09-30T20:21:36Z2008-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 (&& 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#1552011Answer by Marcin for Priority of C++ operators "&" and "->"Marcin2008-09-30T21:36:25Z2008-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>