我需要 pin_ptr 来传递文字字符串吗?

发布于 2024-09-12 15:55:12 字数 262 浏览 4 评论 0原文

我想从托管 C++ 函数调用一个需要“const char *”作为参数的非托管函数。

下面的 a) 和 b) 正确吗?对于 b),我需要 pin_ptr 'hello' 吗?那么a)呢?谢谢。

一个) myFunction( "hello" );

b)

char hello[10] ;
strcpy( hello, "hello" );
myFunction( hello );

From a managed c++ function I want to invoke an unmanaged function that expects a 'const char *' as an argument.

Are a) and b) below correct? For b), do I need to pin_ptr 'hello'? What about a)? Thanks.

a)
myFunction( "hello" );

b)

char hello[10] ;
strcpy( hello, "hello" );
myFunction( hello );

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

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

发布评论

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

评论(1

冰雪梦之恋 2024-09-19 15:55:12

两者都很好。不过,在 b) 中您不需要额外的 strcpy,只需执行:

char hello[] = "hello";
myFunction( hello );

现在它与 a) 几乎相同。

Both are fine. You don't need an extra strcpy in b) though, just do:

char hello[] = "hello";
myFunction( hello );

which now becomes pretty much the same as a).

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