In the C programing language, why do the bitwise operators (& and |) have lower precedence than the equality operator (==)? It does not make sense to me.
feedback
|
|
You need to ask Brian Kernighan or Dennis Ritchie.
So, that might be a reason? I'm guessing since there are several layers of bitwise precendence (unlike relational comparisons) that it's cruft that's existed since...forever...and just was never corrected. | ||||
|
feedback
|
|
It doesn't make sense to Dennis Ritchie, either, in retrospect. http://www.lysator.liu.se/c/dmr-on-or.html && and || were added to the language after | and &, and precedence was maintained for reasons of compatibility. | |||
|
feedback
|
|
I don't have an authoritative answer as to why K&R chose the precedence they did. One example that makes a fair amount of sense would be this one:
Since this is the bitwise AND operator it uses a non-short-circuiting evaluation mode, as would
use the non-short-circuiting OR operator. This is probably why they chose to have the precedence group this way, but I agree with you that in retrospect it doesn't seem like a good idea. | |||||||||||||
feedback
|