首先评估表达式的哪一侧?

发布于 2024-09-19 17:59:12 字数 131 浏览 1 评论 0原文

表达式的右侧将首先被评估还是左侧?

void main ()
{
    int i = 0 , a[3] ;
    a[i] = i++;
    printf ("%d",a[i]) ;
}

Will the right side of the expression get evaluated first or the left ?

void main ()
{
    int i = 0 , a[3] ;
    a[i] = i++;
    printf ("%d",a[i]) ;
}

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

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

发布评论

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

评论(2

如梦初醒的夏天 2024-09-26 17:59:12

赋值运算符的操作数的求值顺序是未指定的:操作数可以按任何顺序求值。

但是,此表达式 (a[i] = i++) 会产生未定义的行为,因为您既修改了 i(使用 i++),又分别读取了 < code>i (使用 a[i]),这些操作之间没有序列点。

The order of evaluation of the operands of the assignment operator is unspecified: the operands may be evaluated in any order.

However, this expression (a[i] = i++) yields undefined behavior because you both modify i (using i++) and you separately read i (using a[i]) without a sequence point in between those actions.

凡间太子 2024-09-26 17:59:12

C 没有定义首先评估哪一侧。标准规定 (C99 §6.5/2):

上一个序列和下一个序列之间
指向一个对象应该存储它的
值最多修改一次
表达式的求值。
此外,先验值应为
访问仅用于确定值
待存储

您发布的上述结果即为 UB。

C does not define which side gets evaluated first. The standard states (C99 §6.5/2):

Between the previous and next sequence
point an object shall have its stored
value modified at most once by the
evaluation of an expression.
Furthermore, the prior value shall be
accessed only to determine the value
to be stored

The aforementioned result you posted is thereby UB.

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