编译器警告(等级 1)C4547
“operator”:逗号前的运算符不起任何作用;需要带副作用的运算符
编译器检测到格式不正确的逗号表达式。
默认情况下,此警告处于关闭状态。 有关详细信息,请参阅 Compiler Warnings That Are Off by Default。
下面的示例生成 C4547:
// C4547.cpp
// compile with: /W1
#pragma warning (default : 4547)
int i = 0;
int j = 1;
int main() {
int l = (i != i,0); // C4547
// try the following line instead
// int l = (i != i);
// or
// int l = ((void)(i != i),0);
}