gpt4 book ai didi

c++ - 既然已弃用,我如何才能获得相同的 strstream 功能?

转载 作者:太空狗 更新时间:2023-10-29 20:31:59 25 4
gpt4 key购买 nike

我曾经这样写代码:

void fun(char *buff, unsigned size)
{
std::strstream str(buff, size);
str << "hello world: " << 5;
}

所以我可以在任意缓冲区上使用流输出。我发现这种技术既有效(无分配)又有用(流!)。现在 std::strstream 已被弃用,我如何才能获得与此代码相同的速度+灵 active ?

最佳答案

标准库不提供该功能。但是,Boost 使用其通用流和数组源/接收器。

Boost Generic Stream
Boost Array Devices

char buff[size];
boost::stream<boost::array_sink> out(buff, size);
out << "Hello, world!";

(代码未经测试)

关于c++ - 既然已弃用,我如何才能获得相同的 strstream 功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3000891/

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