存储流数据的最佳方式

发布于 2024-11-18 22:08:48 字数 267 浏览 3 评论 0 原文

我正在制作一个游戏消息系统并使用 boost::serialize 将消息数据转换为流并发送它。这对于立即传输消息来说效果很好,因为我可以发送对流的引用。

不过,在某些情况下我也想对消息进行排队。我不确定存储数据的最佳方式是什么。

我尝试了 std::queue 但错误很多。

std::bitset 看起来很有希望,但我不确定。

或者这完全是疯了?

I'm making a game message system and using boost::serialize to convert message data into streams and sending it. This works fine for transmitting messages instantly as I can send off the reference to the stream.

However I would like to queue up messages as well in some circumstances. I am not sure what the best way to store the data would be.

I tried std::queue<std::stringstream> but that just errors lots.

std::bitset looks semi promising, but I'm not sure.

Or is this completely bonkers?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏末的微笑 2024-11-25 22:08:48

尝试 std::queue; >。您之前尝试过的字符串流不可复制,因此只需复制字节即可。您还可以使用字符串作为队列中的值类型,因为这可能是您将从字符串流中获取的内容。

Try std::queue<std::vector<char> >. The stringstream you tried before isn't copyable, so just copy the bytes. You could also use string as the value type in the queue, since that's probably what you'll be getting out of the stringstream.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文