gpt4 book ai didi

c - 逗号运算符的评估顺序和 C 中的赋值是可预测的吗?

转载 作者:太空狗 更新时间:2023-10-29 17:21:15 28 4
gpt4 key购买 nike

最近 cppcheck 在某些具有以下结构的 C 代码中引发错误:

((void)(value_prev = value), value = new_value())

在大多数情况下,这可以分成两行,但在某些情况下,这在单个语句中很有用。

在实践中,我发现这适用于流行的编译器 (GCC/Clang/MSVC),它们不会发出任何警告(即使警告级别设置为最高)


示例代码:

#include <stdio.h>

int get_next(int i);

int main() {
int i = 0, i_prev = 10;
do {
printf("%d\n", i);
} while ((void)(i_prev = i),
(i = get_next(i)) != 10);
}

CppCheck 1.73 (撰写本文时的最新版本) 给出了以下代码的错误:

(error) Expression '(void)(i_prev=i),(i=get_next(i))!=10'
depends on order of evaluation of side effects`

虽然可以更改代码以消除警告,但顺序真的未定义吗?

最佳答案

顺序是定义好的,因为它们之间有一个顺序点。参见 ISO/IEC 9899 6.5.17:

The left operand of a comma operator is evaluated as a void expression; there is a sequence point after its evaluation. Then the right operand is evaluated; the result has its type and value. 95) If an attempt is made to modify the result of a comma operator or to access it after the next sequence point, the behavior is undefined.

然后他们给出了一个明确的例子:

In the function call
f(a, (t=3, t+2), c)
the function has three arguments, the second of which has the value 5.

我不完全确定为什么 CppCheck 会标记它。

关于c - 逗号运算符的评估顺序和 C 中的赋值是可预测的吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36949973/

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