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

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

Linda Hamilton
发布: 2024-12-18 20:13:14
原创
219 人浏览过

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

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板