gpt4 book ai didi

c++ - 使用 sync_with_stdio 时打印顺序

转载 作者:行者123 更新时间:2023-11-30 02:14:28 25 4
gpt4 key购买 nike

看这个例子:

#include <iostream>
#include <stdio.h>

int main()
{
std::ios::sync_with_stdio(false);
std::cout << "a";
printf("b");
std::cout << "c";
}

在 gcc 9.2 上,我得到 acb 作为输出。我期待 bac,因为如果我理解正确的话,std::cout 将使用它的缓冲区。为什么按这个顺序打印?

附加问题:设置 std::ios::sync_with_stdio(false) 会提高性能(例如,在上面的示例中)?

最佳答案

stdout 流的 默认 典型行为是行缓冲,因此输出是完全合理的。 printf 不会立即刷新,为此使用 fflush(stdout)

关于您的第二个问题,当不需要同步时,人们会期望性能会提高。然而,分析和检查总是更好,显然对于这个小片段,它不会有太大影响。


编辑:根据 this post 更正答案.

关于c++ - 使用 sync_with_stdio 时打印顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57897532/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com