首页 >后端开发 >C++ >为什么 `std::cout` 中参数求值的顺序未指定,如何确保输出一致?

为什么 `std::cout` 中参数求值的顺序未指定,如何确保输出一致?

Linda Hamilton
Linda Hamilton原创
2024-12-18 20:13:14223浏览

Why is the Order of Argument Evaluation in `std::cout` Unspecified, and How Can I Ensure Consistent Output?

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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn