gpt4 book ai didi

c++ - C++ 逗号运算符的优先级

转载 作者:行者123 更新时间:2023-12-01 22:32:31 28 4
gpt4 key购买 nike

嗨,我对以下代码有点困惑:

int main()
{
int sum = 0, val = 1;
while(val <= 10)
sum += val, ++val; //source of problem

cout<<"Sum of 1 to 10 inclusive is " << sum << endl;
//
return 0;
}

我目前正在学习运算符优先级。知道逗号运算符在 C++ 运算符中优先级最低,我希望 while 循环中的语句按以下顺序求值:

++val; //so that val is incremented to 2 the first time the code in the while loop is evaluated
sum += val; //so that the incremented value of val is added to the sum variable

但是代码按以下顺序计算:

sum += val;
++val;

为什么逗号运算符似乎影响了求值顺序?

最佳答案

这与优先级无关;这是关于评估顺序的。与大多数其他 C++ 运算符(C++17 之前的版本)不同,逗号运算符严格强制执行特定的求值顺序。逗号表达式始终从左到右计算。

关于c++ - C++ 逗号运算符的优先级,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59290239/

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