| C#编写控制线程的运行和线程之间的通信例子 |
| 来源:
发布时间:2008-06-22 发布人:
浏览:
人次
字体:
[大
中
小]
|
|
本文主讲在C#语言中用ManualResetEvent和AutoResetEvent可以很好的控制线程的运行和线程之间的通信。在这里模拟了一个线程更新数据,两个线程读取数据。更新的时候需要阻止读取的两个现成工作。而另外还有一个信号量来控制线程的退出。 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace WindowsApplication35 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } System.Threading.ManualResetEvent mEvent = new System.Threading.ManualResetEvent(true); //判断线程安全退出的信号量 System.Threading.ManualResetEvent mEventStopAll = new System.Threading.ManualResetEvent(false); //ManualResetEvent的用法。 private void button1_Click(object sender, EventArgs e) { //一个线程模拟写入 new System.Threading.Thread(invokeWrite).Start(); //两个线程模拟读取 new System.Threading.Thread(invokeRead).Start(); new System.Threading.Thread(invokeRead).Start(); } private void invokeWrite() { for (int i = 0; i < 100; i++) { //判断线程安全退出 if (mEventStopAll.WaitOne(10, false) == true) break; //设置信号量,假设更新数据需要2秒,每更新一次暂停2秒. mEvent.Reset(); Console.WriteLine("正在更新..."); System.Threading.Thread.Sleep(2000); mEvent.Set(); System.Threading.Thread.Sleep(2000); } } private void invokeRead() { while (mEvent.WaitOne() == true) { //判断线程安全退出 if (mEventStopAll.WaitOne(10, false) == true) break; //假设读取一体数据用10毫秒.他需要判断信号量开关. Console.WriteLine("读取一条数据:"); System.Threading.Thread.Sleep(10); } } private void Form1_FormClosing(object sender, FormClosingEventArgs e) { mEventStopAll.Set(); } } }
| |
| |
|
↓下一篇:没有了
|
|
|
| §最新评论:(评论内容只代表网友观点,与本站立场无关!) | |
|
|
|
|
| 注意:请勿在本站发布政治话题、色情及违反法律的内容。 |
IT知道网 声明:刊登此文章是为了传递更多信息,文章内容仅供参考,转载请注明出处。 |