c – 是否定义了if(i)的行为?

假设我有这个代码
int main(void)
{
    int i = rand();
    if (++i) ++i;
    return i;
}

这里定义的行为是什么?我知道i = i未定义,main中的第二行包含类似的内容. rand()调用是为了阻止编译器优化我认为是有问题的行.

解决方法

从C standard

以下是描述的序列点: –

….
Between the evaluation of a full expression and the next full expression to be evaluated. The following are full expressions: an initializer that is not part of a compound literal (6.7.9); the expression in an expression statement 07001; the controlling expression of a selection statement (if or switch) 07002; the controlling expression of a while or do statement (6.8.5); each of the (optional) expressions of a for statement (6.8.5.3); the (optional) expression in a return statement.

所以是的,这是有效的.我只是向您展示标准报价,以便您对某个地方的规则表示满意.

相关文章

/** C+⬑ * 默认成员函数 原来C++类中,有6个默认成员函数: 构造函数 析构函数 拷贝...
#pragma once // 1. 设计一个不能被拷贝的类/* 解析:拷贝只会放生在两个场景中:拷贝构造函数以及赋值运...
C类型转换 C语言:显式和隐式类型转换 隐式类型转化:编译器在编译阶段自动进行,能转就转,不能转就编译...
//异常的概念/*抛出异常后必须要捕获,否则终止程序(到最外层后会交给main管理,main的行为就是终止) try...
#pragma once /*Smart pointer 智能指针;灵巧指针 智能指针三大件//1.RAII//2.像指针一样使用//3.拷贝问...
目录<future>future模板类成员函数:promise类promise的使用例程:packaged_task模板类例程...