《你不常用的c#之二》:略談GCHandle

來源:互聯網
上載者:User

我們在使用c#Managed 程式碼時,記憶體位址和GC回收那不是我們關心的,CLR已經給我們暗箱操作。
但是如果我們在c#中調用了一個Unmanaged 程式碼,比如vc的DLL,而且他有個回呼函數,需要引用c#中的某個對象並操作,
這時候你就得要小心了。
要是Unmanaged 程式碼中用到得Managed 程式碼那個對象被GC給回收了,這時候就會報記憶體錯誤。
所以我們就要把那個對象“釘”住(pin),讓它的記憶體位址固定,而不被記憶體回收掉,然後最後我們自己管理,自己釋放記憶體,這時候就需要GCHandle,來看個msdn上的例子:


 public delegate bool CallBack(int handle, IntPtr param);
         public class LibWrap
         {
             [DllImport("user32.dll")]
          public static extern bool EnumWindows(CallBack cb, IntPtr param);
      }
  
  class Program
      {
          static void Main(string[] args)
          {
  
  TextWriter tw = System.Console.Out;
              GCHandle gch = GCHandle.Alloc(tw);
              CallBack cewp = new CallBack(CaptureEnumWindowsProc);
              LibWrap.EnumWindows(cewp, (IntPtr)gch);
              gch.Free();
              Console.Read();
  
  }
  private static bool CaptureEnumWindowsProc(int handle, IntPtr param)
          {
              GCHandle gch = (GCHandle)param;
              TextWriter tw = (TextWriter)gch.Target;
  
  tw.WriteLine(handle);
              return true;
          }
  
  }

對上面的代碼,略加解釋:gch 會釘住(pin)tw這個對象,使其不受GC管理,告訴它,以後你崩管我,我也不用給你上稅,其實管理權已經給gch,通過free來釋放記憶體。
這種情況主要用在託管和Unmanaged 程式碼互動的時候,防止記憶體泄露來使用GCHandle。

另也可以使用GC.KeepAlive 方法(引用msdn)
KeepAlive 方法的目的是確保對對象的引用存在,該對象有被記憶體回收行程過早回收的危險。這種現象可能發生的一種常見情形是,當在Managed 程式碼或資料中已沒有對該對象的引用,但該對象仍然在Unmanaged 程式碼(如 Win32 API、非託管 DLL 或使用 COM 的方法)中使用。
下面是例子:


using System;
  using System.Threading;
  using System.Runtime.InteropServices;
  
  // A simple class that exposes two static Win32 functions.
  // One is a delegate type and the other is an enumerated type.
  public class MyWin32
  {
      // Declare the SetConsoleCtrlHandler function 
      // as external and receiving a delegate.   
      [DllImport("Kernel32")]
      public static extern Boolean SetConsoleCtrlHandler(HandlerRoutine Handler,
          Boolean Add);
  
      // A delegate type to be used as the handler routine 
      // for SetConsoleCtrlHandler.
      public delegate Boolean HandlerRoutine(CtrlTypes CtrlType);
  
      // An enumerated type for the control messages 
      // sent to the handler routine.
      public enum CtrlTypes
      {
          CTRL_C_EVENT = 0,
          CTRL_BREAK_EVENT,
          CTRL_CLOSE_EVENT,
          CTRL_LOGOFF_EVENT = 5,
          CTRL_SHUTDOWN_EVENT
      }
  }
  
  public class MyApp
  {
      // A private static handler function in the MyApp class.
      static Boolean Handler(MyWin32.CtrlTypes CtrlType)
      {
          String message = "This message should never be seen!";
  
          // A switch to handle the event type.
          switch (CtrlType)
          {
              case MyWin32.CtrlTypes.CTRL_C_EVENT:
                  message = "A CTRL_C_EVENT was raised by the user.";
                  break;
              case MyWin32.CtrlTypes.CTRL_BREAK_EVENT:
                  message = "A CTRL_BREAK_EVENT was raised by the user.";
                  break;
              case MyWin32.CtrlTypes.CTRL_CLOSE_EVENT:
                  message = "A CTRL_CLOSE_EVENT was raised by the user.";
                  break;
              case MyWin32.CtrlTypes.CTRL_LOGOFF_EVENT:
                  message = "A CTRL_LOGOFF_EVENT was raised by the user.";
                  break;
              case MyWin32.CtrlTypes.CTRL_SHUTDOWN_EVENT:
                  message = "A CTRL_SHUTDOWN_EVENT was raised by the user.";
                  break;
          }
  
          // Use interop to display a message for the type of event.
          Console.WriteLine(message);
  
          return true;
      }
  
      public static void Main()
      {
  
          // Use interop to set a console control handler.
          MyWin32.HandlerRoutine hr = new MyWin32.HandlerRoutine(Handler);
          MyWin32.SetConsoleCtrlHandler(hr, true);
  
          // Give the user some time to raise a few events.
          Console.WriteLine("Waiting 30 seconds for console ctrl events");
  
          // The object hr is not referred to again.
          // The garbage collector can detect that the object has no
          // more managed references and might clean it up here while
          // the unmanaged SetConsoleCtrlHandler method is still using it.      
  
          // Force a garbage collection to demonstrate how the hr
          // object will be handled.
          GC.Collect();
          GC.WaitForPendingFinalizers();
          GC.Collect();
  
          Thread.Sleep(10000);
  
          // Display a message to the console when the unmanaged method
          // has finished its work.
          Console.WriteLine("Finished!");
  
          // Call GC.KeepAlive(hr) at this point to maintain a reference to hr. 
          // This will prevent the garbage collector from collecting the 
          // object during the execution of the SetConsoleCtrlHandler method.
          GC.KeepAlive(hr);
          Console.Read();
      }
  }
  原文網址:http://www.cnblogs.com/overred/archive/2009/05/04/GCHandle.html

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.