C中的条件运算符和赋值运算符

发布于 2024-09-08 08:22:59 字数 454 浏览 6 评论 0原文

关于 http://groups.google.co.in/group/comp.lang.c/browse_thread/thread/bfb312ad902d94eb/74dcdcacce777679?lnk=gst&q=conditional+operator#74dcdcacce777679

有一个答案给出一个问题为什么
(A%2==0)?A=0:A=1 给出错误。

我不明白我们什么时候使用(优先级和关联性)以及我们
使用C语法来解析表达式?

On http://groups.google.co.in/group/comp.lang.c/browse_thread/thread/bfb312ad902d94eb/74dcdcacce777679?lnk=gst&q=conditional+operator#74dcdcacce777679

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

删除会话 2024-09-15 08:22:59

始终使用语法来解析表达式。

优先级和结合性源自语法,它们不是规则。许多优先级表都过于简化,在一些晦涩的极端情况下不起作用。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文