我正在玩AutoResetEvent
并且我的应用程序没有结束,我想我知道原因:线程仍在运行,因此应用程序不会终止。通常,在Main()
中,在我按下某个键后,该应用终止。但控制台窗口不再关闭。我有一个简单的控制台应用程序:
private static EventWaitHandle waitHandle = new AutoResetEvent(false);
static void Main(string[] args)
{
AutoResetEventFun();
Console.WriteLine("Press any key to end.");
Console.ReadKey();
waitHandle.Close(); // This didn't cause the app to terminate.
waitHandle.Dispose(); // Nor did this.
}
private static void AutoResetEventFun()
{
// Start all of our threads.
new Thread(ThreadMethod1).Start();
new Thread(ThreadMethod2).Start();
new Thread(ThreadMethod3).Start();
new Thread(ThreadMethod4).Start();
while (Console.ReadKey().Key != ConsoleKey.X)
{
waitHandle.Set(); // Let one of our threads process.
}
}
// There are four of these methods. Only showing this one for brevity.
private static void ThreadMethod1()
{
Console.WriteLine("ThreadMethod1() waiting...");
while (true)
{
waitHandle.WaitOne();
Console.WriteLine("ThreadMethod1() continuing...");
}
}
终止此应用的正确方法是什么?我是否需要保留对每个线程的引用并在每个线程上调用Abort()
?有没有办法发信号waitHandle
,以便等待它的线程终止? (我不这么认为,但我认为值得问。)
答案 0 :(得分:7)
虽然我不完全确定你要完成什么,让这个应用程序终止的一种方法是制作所有线程后台线程:
private static void ThreadMethod1()
{
Thread.CurrentThread.IsBackground = true;
Console.WriteLine("ThreadMethod1() waiting...");
while (true)
{
waitHandle.WaitOne();
Console.WriteLine("ThreadMethod1() continuing...");
}
}
答案 1 :(得分:1)
另一种方法是设置一个易失的'Abort'布尔标志,线程总是在从WaitOne()调用返回后检查它是否需要退出。然后你可以设置这个标志并发出WaitHandle信号[没有。线程]次。