2011-11-08 129 views
-1

我在GC.KeepAlive()上运行下面的代码示例并将其注释掉,但它是相同的。如何编码,以便我可以看到差异。GC.KeepAlive()似乎没有效果

// 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(30000); 

     // 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://msdn.microsoft.com/en-us/library/system.gc.keepalive.aspx

感谢。

+2

您是否在调试模式下运行,和/或是否连接了调试器?在调试时,GC的攻击性要小得多,因此要保持对象更长的时间。尝试在发布模式下编译并在未连接调试器的情况下运行(Visual Studio中的Ctrl + F5)。 – LukeH

+0

谢谢你提醒我。 – Pingpong

回答

2
GC.KeepAlive(hr); 

本身就是(在后面的代码)的参考...

所以hr不能在您的CAL GC.Collect()点(一个或多个)收集。

你预期会发生什么?

相关问题