C中的条件运算符和赋值运算符
有一个答案给出一个问题为什么
(A%2==0)?A=0:A=1 给出错误。
我不明白我们什么时候使用(优先级和关联性)以及我们
使用C语法来解析表达式?
There is an answer given for a question why
(A%2==0)?A=0:A=1 gives error.
The thing I don't understand that when do we use (precedence and associativty) and we
use C grammar to parse the expression ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
始终使用语法来解析表达式。
优先级和结合性源自语法,它们不是规则。许多优先级表都过于简化,在一些晦涩的极端情况下不起作用。
Always use the grammar to parse expressions.
Precedence and associativity are derived from the grammar, they are not the rules. Many precedence tables are over-simplifications that don't work in some obscure corner cases.