gpt4 book ai didi

c - C 中 i++ 和 (i)++ 的区别

转载 作者:太空狗 更新时间:2023-10-29 16:18:44 25 4
gpt4 key购买 nike

int i = 3;
int j = (i)++;

对比

int i = 3;
int j = i ++;

以上两种情况的评估方式有区别吗?

第一种情况等同于递增右值还是未定义的行为?

最佳答案

i++(i)++ 的行为相同。 C 2018 6.5.1 5 说:

A parenthesized expression is a primary expression. Its type and value are identical to those of the unparenthesized expression. It is an lvalue, a function designator, or a void expression if the unparenthesized expression is, respectively, an lvalue, a function designator, or a void expression.

C 1999 中的措辞相同。

关于c - C 中 i++ 和 (i)++ 的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54908480/

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