计算 std::cout 插入顺序中的参数
在 C 中,使用 std::cout 插入的表达式中参数计算的顺序运算符可能会令人困惑。考虑以下代码片段:
#include <iostream> bool foo(double &m) { m = 1.0; return true; } int main() { double test = 0.0; std::cout << "Value of test is : \t" << test << "\tReturn value of function is : " << foo(test) << "\tValue of test : " << test << std::endl; return 0; }
这段代码的输出令人惊讶:
Value of test is : 1 Return value of function is : 1 Value of test : 0
理解这个输出需要深入研究参数求值的顺序。
未指定的评估顺序
通常,C 不指定表达式中参数的求值顺序。这由编译器决定。但是,也有一些例外,例如:
从左到右评估假设
它是通常假设 std::cout 插入是从左到右评估的,但这并不能保证。在我们的示例中,第三个参数中的“影子”测试在调用 foo 之前进行评估,这会修改它。
解决混乱
以确保预期的结果求值顺序,将表达式拆分成单独的语句:
double test = 0.0; std::cout << "Value of test is : \t" << test << std::endl; std::cout << "Return value of function is : " << foo(test) << std::endl; std::cout << "Value of test : " << test << std::endl;
此代码正确输出:
Value of test is : 0 Return value of function is : 1 Value of test : 1
以上是为什么 C 中 std::cout 参数求值顺序不可预测?的详细内容。更多信息请关注PHP中文网其他相关文章!