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 : 1
但是,实际输出可能会因编译器和平台的不同而有所不同。代码可能会打印:
Value of test is : 1 Return value of function is : 1 Value of test : 0
这是因为 std::cout 语句中参数的求值顺序未定义。在第一种情况下,test 在 foo() 调用之前评估,因此它打印 1。在第二种情况下,test 在 foo() 调用之后评估,因此它打印 0。
确保正确的排序,将表达式拆分为多个语句:
double test_after_foo = foo(test); std::cout << "Value of test is : \t" << test << "\tReturn value of function is : " << test_after_foo << "\tValue of test : " << test_after_foo << std::endl;
这保证了 foo(test) 在 std::cout 语句之前计算,从而在不同编译器之间提供一致的输出平台。
以上是为什么 `std::cout` 中参数求值的顺序未指定,如何确保输出一致?的详细内容。更多信息请关注PHP中文网其他相关文章!