interop – 固定一个空数组

前端之家收集整理的这篇文章主要介绍了interop – 固定一个空数组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在C/C++LI中,是否可以固定不包含元素的数组?

例如

array<System::Byte>^ bytes = gcnew array<System::Byte>(0);
pin_ptr<System::Byte> pin = &bytes[0]; //<-- IndexOutOfRangeException occurs here

MSDN提供的建议不包括空数组的情况.
http://msdn.microsoft.com/en-us/library/18132394%28v=VS.100%29.aspx

顺便说一句,您可能想知道为什么我想要固定一个空数组.简短的回答是,为了简化代码,我想对空数组和非空数组进行相同处理.

解决方法

不,而不是pin_ptr<>.你可以回到GCHandle来实现同样的目标:
using namespace System::Runtime::InteropServices;
...
    array<Byte>^ arr = gcnew array<Byte>(0);
    GCHandle hdl = GCHandle::Alloc(arr,GCHandleType::Pinned);
    try {
        unsigned char* ptr = (unsigned char*)(void*)hdl.AddrOfPinnedObject();
        // etc..
    }
    finally {
        hdl.Free();
    }

听起来我应该使用List< Byte> ^而不是btw.

原文链接:https://www.f2er.com/c/119867.html

猜你在找的C&C++相关文章