次の方法で共有


方法: アンマネージ メモリ内にオブジェクト参照を保持する

GCHandle をラップする gcroot.h を使用して、アンマネージド メモリ内に CLR オブジェクト参照を保持することができます。 または、GCHandle を直接使用できます。

// 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 は、アンマネージド メモリにマネージド オブジェクト参照を保持する手段を提供します。 Alloc メソッドを使用してマネージド オブジェクトへの不透明ハンドルを作成し、Free を使用してそれを解放します。 また、Target メソッドを使用して、マネージド コード内のハンドルからオブジェクト参照を取得することもできます。

// 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

関連項目

C++ Interop (暗黙の PInvoke) の使用