文档库 最新最全的文档下载
当前位置:文档库 › C#多线程通信之委托(事件)

C#多线程通信之委托(事件)

C#多线程通信之委托(事件)
C#多线程通信之委托(事件)

C#多线程通信之委托(事件)

在研究C# 线程之间通信时,发现传统的方法大概有三种

①全局变量,由于同一进程下的多个进程之间共享数据空间,所以使用全局变量是最简单的方法,但要记住使用volatile进行限制。

②线程之间发送消息(这个随后文章中会讨论到)。

③CEvent为MFC中的一个对象,可以通过对CEvent的触发状态进行改变,从而实现线程间的通信和同步,这个主要是实现线程直接同步的一种方法。

本文介绍的一种方法是这三种之外的一种方法,本文中实例是通过创建一个线程类,通过委托事件把值传送到Form所在的类中,同时更新Form类中的一个控件(Label)中的值。

实现功能比较简单,目的是实现此功能,先把代码贴上:

MyThread.cs

https://www.wendangku.net/doc/7012510467.html,ing System;

https://www.wendangku.net/doc/7012510467.html,ing System.Threading;

3.

https://www.wendangku.net/doc/7012510467.html,space ThreadsComm

5.{

6. public delegate void ReadParamEventHandler(string sParam);

7. class MyThread

8. {

9. public Thread thread1; 10. private static ReadParamEventHandler OnReadParamEvent; 11. public MyThread() 12. {

13. thread1 = new Thread(new ThreadStart(MyRead)); 14. thread1.IsBackground = true; 15. thread1.Start();

16. }

17. public event ReadParamEventHandler ReadParam 18. {

19. add { OnReadParamEvent += new ReadParamEventHandler(value);} 20. remove{ OnReadParamEvent -= new ReadParamEventHandler(value);} 21. }

22. protected void MyRead() 23. {

24. int i = 0; 25. while (true) 26. {

27. Thread.Sleep(1000);

28. i = i + 1;

29. OnReadParamEvent(i.ToString());//触发事件30. }

31. }

32. }

33.}

其中的

1.public event ReadParamEventHandler ReadParam

2. {

3. add { OnReadParamEvent += new ReadParamEventHandler(value);}

4. remove{ OnReadParamEvent -= new ReadParamEventHandler(value);}

5. }

这个需要说明一下:

add 上下文关键字用于定义一个自定义事件访问器,当客户端代码订阅您的事件时将调用该访问器。如果提供自定义add 访问器,还必须提供remove 访问器。

remove 上下文关键字用于定义一个自定义事件访问器,当客户端代码取消订阅事件时将调用该访问器。如果提供自定义remove 访问器,还必须提供add 访问器。

Form.cs

https://www.wendangku.net/doc/7012510467.html,ing System;

https://www.wendangku.net/doc/7012510467.html,ing System.Windows.Forms;

3.

https://www.wendangku.net/doc/7012510467.html,space ThreadsComm

5.{

6. public partial class Form1 : Form

7. {

8. private static string param = ""; 9. public Form1() 10. {

11. InitializeComponent();

12. MyThread thread1 = new MyThread(); 13. thread1.ReadParam += this.OnRead; 14. }

15.

16. private void OnRead(string sParam) 17. {

18. param = sParam;

19. Object[] list = { this,System.EventArgs.Empty}; 20. this.lblShow.BeginInvoke(new EventHandler(LabelShow), list); 21. }

22. protected void LabelShow(Object o, EventArgs e) 23. {

24. this.lblShow.Text = param; 25. }

26. }

27.}

其中的,

1.MyThread thread1 = new MyThread();

2.thread1.ReadParam += this.OnRead; 是订阅线程类中的事件。

1.this.lblShow.BeginInvoke(new EventHandler(LabelShow), list);

Invoke或者BeginInvoke方法都需要一个委托对象作为参数。委托类似于回调函数的地址,因此调用者通过这两个方法就可以把需要调用的函数地址封送给界面线程。这些方法里面如果包含了更改控件状态的代码,那么由于最终执行这个方法的是界面线程,从而避免了竞争条件,避免了不可预料的问题。如果其它线程直接操作界面线程所属的控件,那么将会产生竞争条件,造成不可预料的结果。

使用Invoke完成一个委托方法的封送,就类似于使用SendMessage方法来给界面线程发送消息,是一个同步方法。也就是说在Invoke封送的方法被执行完毕前,Invoke方法不会返回,从而调用者线程将被阻塞。

使用BeginInvoke方法封送一个委托方法,类似于使用PostMessage进行通信,这是一个异步方法。也就是该方法封送完毕后马上返回,不会等待委托方法的执行结束,调用者线程将不会被阻塞。但是调用者也可以使用EndInvoke方法或者其它类似WaitHandle机制等待异步操作的完成。

但是在内部实现上,Invoke和BeginInvoke都是用了PostMessage方法,从而避免了SendMessage带来的问题。而Invoke方法的同步阻塞是靠WaitHandle机制来完成的。

想实验的读者可以建一个winform工程,采用上边的代码试验一下。

相关文档