将缓冲区提升为 char* (无 std::string)

发布于 2024-08-15 03:37:30 字数 244 浏览 4 评论 0原文

所以,这听起来可能是一个真正的新手问题...很可能是新手:)

我尝试使用 read_until 将我得到的 boost::asio::streambuf 信息转换为 char* 。我发现了很多将其转换为 std::string 的例子,但如果使用 bufer -> 我会生气。 std::string ->;应用程序中的c_str需要高性能。 (但事实上,我实际上并不真正喜欢容器之类的东西。)

So, it may be sounds as a realy newbies question... And proboly it is newbies :)

I try to turn infomation from boost::asio::streambuf which I got, using read_until into char*. I've found realy many examples of turning it into std::string, but I'd mad, if use bufer -> std::string -> c_str in an application, needs a high perfomanse. (But in fact, I ectally do not realy stuff like conteiners and so on.)

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

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

发布评论

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

评论(1

你另情深 2024-08-22 03:37:30

您假设将 std::string 转换为 C 字符串会损害性能。

不应假设这一点。 std::string 通常被实现为 C 字符串的包装器。

如果您对当前性能不满意,请首先在代码上使用运行时分析器。

You are assuming that converting a std::string into a C string hurts performance.

This should not be assumed. std::string is often implemented as a wrapper around a C string.

If you are unhappy with current performance, start by using a run-time profiler on your code.

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