将缓冲区提升为 char* (无 std::string)
所以,这听起来可能是一个真正的新手问题...很可能是新手:)
我尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您假设将 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.