C 中的表达式求值

发布于 2024-11-23 21:10:35 字数 349 浏览 0 评论 0原文

#include <stdio>
int main(){      

       int x = 4;  
       int y = 3;  
       int z;

       z = x---y;
       printf("%d" , z);
       return 0;
}

Linux Mandriva 中的 gcc 编译器将其计算为 (x--)-y。 我很困惑为什么会这样。 它可能是x - (--y)

我知道有些答案会告诉我查看优先级表。我已经经历了所有这些,但疑问仍然存在。

请任何人澄清这一点。

#include <stdio>
int main(){      

       int x = 4;  
       int y = 3;  
       int z;

       z = x---y;
       printf("%d" , z);
       return 0;
}

The gcc compiler in Linux Mandriva evaluates it as (x--)-y.
I am confused as to why is it so.
It could have been x - (--y).

I know some of the answers would tell me to look at precedence tables. Ihave gone through all of them, still the doubt persists.

Please anybody clarify this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

黎夕旧梦 2024-11-30 21:10:35

C 词法分词器是贪婪的,因此您的表达式会像

x -- - y

应用优先规则之前一样被分词。

The C lexical tokeniser is greedy, so your expression is tokenised as

x -- - y

before precedence rules are applied.

撑一把青伞 2024-11-30 21:10:35

规则是“获取下一个标记时,使用构成有效标记的可能的最长字符序列”。所以 ----- 后跟 -,而不是相反。优先级实际上与此无关。

The rule is "when getting the next token, use the longest sequence of characters possible that constitute a valid token". So --- is -- followed by a - and not the other way around. Precedence has actually nothing to do with this.

恏ㄋ傷疤忘ㄋ疼 2024-11-30 21:10:35

x----x 更强,因此以这种方式编译。后缀比前缀强。

请参阅C 运算符优先级表

x-- is stronger than --x , so it is compiled this way. Postfix is stronger than prefix.

See C Operator Precedence Table.

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