使用marshal_as函数转换字符串的性能

发布于 2024-12-17 10:30:49 字数 216 浏览 1 评论 0原文

目前我正在尝试使用 marshal_as 函数将 String^ 转换为 std::string (链接: http://msdn.microsoft.com/en-us/library/bb384865.aspx)。有谁知道这个转换的性能吗?谢谢。

Currently I am trying to convert String^ to std::string using marshal_as function (Link: http://msdn.microsoft.com/en-us/library/bb384865.aspx). Does anyone know the performance of this conversion? Thanks.

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

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

发布评论

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

评论(1

鹿港巷口少年归 2024-12-24 10:30:49

我的建议:使用它。如果您的代码运行得足够快,那么就不用担心。转换字符串不太可能成为瓶颈。如果分析显示它瓶颈,那么您的问题可能不在于marshal_as(我希望它会非常快),而是您的代码在类型之间进行过多的转换。

My suggestion: use it. If your code runs fast enough, then don't worry about it. It's highly unlikely that converting your strings is going to be a bottleneck. If profiling shows that it is a bottleneck, it's probable that your problem isn't with marshal_as (which I would expect to be very fast), but rather that your code is making too many conversions between types.

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