gpt4 book ai didi

c++ - 首先使用哪个运算符?

转载 作者:太空宇宙 更新时间:2023-11-03 10:26:54 25 4
gpt4 key购买 nike

我刚刚在我的 C++ 类(class)中进行了测试,我做错的问题之一是:

Look at the following statement. while (x++ < 10) Which operator is used first?

我的答案是++ 然而,测试告诉我它实际上是 <。有人可以解释这是为什么吗?

最佳答案

你是对的。 operator++优先级高于 operator< .

C++ Operator Precedence

因此,在这种情况下,operator++将首先被调用,然后返回原始值(递增之前),用于比较。

LIVE

关于c++ - 首先使用哪个运算符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31129205/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com