在我的控制台应用程序中,在线程中同步事件很困难。
using System;
using System.Threading;
using System.Windows.Forms;
namespace ConsoleApplication1
{
public class Example
{
private static Button _button;
private static readonly EventWaitHandle Ewh = new EventWaitHandle(false, EventResetMode.ManualReset);
private static readonly EventWaitHandle Btn = new EventWaitHandle(false, EventResetMode.ManualReset);
[STAThread]
public static void Main()
{
_button = new Button();
_button.Click += _button_Click;
for (int i = 0; i <= 0x4; i++)
{
var t = new Thread(ThreadProc);
t.Start(i);
}
Console.WriteLine("Press ENTER to release a waiting thread.");
Console.ReadLine();
Ewh.Set();
Console.ReadLine();
}
private static void _button_Click(object sender, EventArgs e)
{
Console.WriteLine(new Random().Next(0x1388));
Thread.Sleep(10);
Btn.Set();
}
public static void ThreadProc(object data)
{
_button.PerformClick();
Btn.WaitOne();
Btn.Reset();
Console.WriteLine("Thread {0} blocks.", data);
Ewh.WaitOne();
Console.WriteLine("Thread {0} exits.", data);
}
}
}
应用程序以一些随机数的形式给出结果,然后是线程块,并且在发出EventWaihandle数据线程退出的信号后打印在控制台上。
目的是通过以下方式打印数据,例如
*随机数据
线程块
随机数据
线程块
……
线程退出
...*
样本输出
1234
线程 2 块
2345
线程 0 块
3456
线程 1 块
……
线程 1 退出
线程 4 退出
……
如何以这种方式在线程内同步线程和事件。