如何将 IntPtr 转换为本机 c++目的

发布于 2024-10-04 01:08:10 字数 86 浏览 2 评论 0原文

我有在 C++/Cli 中使用的 COM dll,该 COM dll 中的方法之一返回 IntPtr 我想将其转换回本机对象指针。我怎样才能做到这一点?请输入

I have COM dll that I am using in C++/Cli, one of the method in this COM dll returns IntPtr
I want to convert that back to the native object pointer. How I can do that ? please in put

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

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

发布评论

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

评论(3

勿忘初心 2024-10-11 01:08:10

IntPtr 是整型,您需要首先将其转换为指针类型:

  IntPtr somePtr;
  ...
  Mumble* fooPtr = (Mumble*)(void*)somePtr;

或者更易读的版本:

  Mumble* fooPtr = (Mumble*)somePtr.ToPointer();

方法调用将在运行时被优化掉。

IntPtr is an integral type, you need to first convert it to a pointer type:

  IntPtr somePtr;
  ...
  Mumble* fooPtr = (Mumble*)(void*)somePtr;

Or the more readable version:

  Mumble* fooPtr = (Mumble*)somePtr.ToPointer();

The method call will be optimized away at runtime.

何止钟意 2024-10-11 01:08:10

IntPtr 有一个 ToPointer 方法,该方法返回 void*。调用此方法,然后使用reintepret_cast 将此指针转换为正确的本机类型。

IntPtr has a ToPointer method that returns a void*. Call this method, then use reintepret_cast to cast this pointer to the right native type.

回首观望 2024-10-11 01:08:10

我想修改Hans Passant的回答
IntPtr 直接返回 void 指针..您可以在任何类型的本机 C++ 指针中轻松转换它。

IntPtr somePtr;
Mumble* fooPtr = (Mumble*)somePtr.ToPointer();

这里 .ToPointer() 将返回 void 指针,现在您可以转换为自定义指针类型。

I would like to modify Hans Passant's answer,
IntPtr directly returns void pointer .. which you can cast easily in any type of native C++ Pointer.

IntPtr somePtr;
Mumble* fooPtr = (Mumble*)somePtr.ToPointer();

here .ToPointer() will return void pointer, now you can cast to your custom pointer type.

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