gpt4 book ai didi

c++ - std::print() 线程安全吗?它是否存在文本交错问题?

转载 作者:行者123 更新时间:2023-12-03 07:58:49 24 4
gpt4 key购买 nike

std::print() will be added in C++23 .

我想知道的是 std::print() 是否是线程安全的,即不存在数据竞争

它是否存在文本交错问题,例如,如果我在线程 1 中存在:

std::print("The quick brown fox ")
std::print("jump over the lazy dog \n")

和线程 2:

std::print("She sells ")
std::print("seashells by the seashore \n")

它能以疯狂的顺序打印吗,就像这样:

She sells The quick brown fox seashells by the seashore \n
jump over the lazy dog \n

我想这两个问题的答案都是肯定的,与 std::cout 的行为相匹配,但是任何人都可以将我链接到标准所说的内容吗?

最佳答案

两者都是iostreamFILE* stream std::print 的版本及其所有衍生版本都基于与使用 std::format 创建临时字符串然后将该字符串插入流中等效的行为。因此,如果他们想要对流进行多次调用,则必须以某种方式锁定流。

无论如何,它们的内部格式都是线程安全且原子的,

关于c++ - std::print() 线程安全吗?它是否存在文本交错问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/75045049/

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