Procedura: mantenere i riferimenti agli oggetti in una funzione nativa
Aggiornamento: novembre 2007
È possibile utilizzare gcroot.h, che contiene GCHandle, per mantenere un riferimento agli oggetti CLR nella memoria non gestita. In alternativa, è possibile utilizzare direttamente GCHandle.
Esempio
// hold_object_reference.cpp
// compile with: /clr
#include "gcroot.h"
using namespace System;
#pragma managed
class StringWrapper {
private:
gcroot<String ^ > x;
public:
StringWrapper() {
String ^ str = gcnew String("ManagedString");
x = str;
}
void PrintString() {
String ^ targetStr = x;
Console::WriteLine("StringWrapper::x == {0}", targetStr);
}
};
#pragma unmanaged
int main() {
StringWrapper s;
s.PrintString();
}
StringWrapper::x == ManagedString
GCHandle consente di mantenere un riferimento a un oggetto gestito nella memoria non gestita. È possibile utilizzare il metodo Alloc per creare un handle opaco su un oggetto gestito e il metodo Free per rilasciarlo. Inoltre, è possibile utilizzare il metodo Target per recuperare il riferimento all'oggetto dall'handle nel codice gestito.
// hold_object_reference_2.cpp
// compile with: /clr
using namespace System;
using namespace System::Runtime::InteropServices;
#pragma managed
class StringWrapper {
IntPtr m_handle;
public:
StringWrapper() {
String ^ str = gcnew String("ManagedString");
m_handle = static_cast<IntPtr>(GCHandle::Alloc(str));
}
~StringWrapper() {
static_cast<GCHandle>(m_handle).Free();
}
void PrintString() {
String ^ targetStr = safe_cast< String ^ >(static_cast<GCHandle>(m_handle).Target);
Console::WriteLine("StringWrapper::m_handle == {0}", targetStr);
}
};
#pragma unmanaged
int main() {
StringWrapper s;
s.PrintString();
}
StringWrapper::m_handle == ManagedString
Vedere anche
Riferimenti
Utilizzo delle funzionalità di interoperabilità C++ (PInvoke implicito)