深入了解c#多线程编程
一、使用线程的理由
1、可以使用线程将代码同其他代码隔离,提高应用程序的可靠性。
2、可以使用线程来简化编码。
3、可以使用线程来实现并发执行。
二、基本知识
1、进程与线程:进程作为操作系统执行程序的基本单位,拥有应用程序的资源,进程包含线程,进程的资源被线程共享,线程不拥有资源。
2、前台线程和后台线程:通过thread类新建线程默认为前台线程。当所有前台线程关闭时,所有的后台线程也会被直接终止,不会抛出异常。
3、挂起(suspend)和唤醒(resume):由于线程的执行顺序和程序的执行情况不可预知,所以使用挂起和唤醒容易发生死锁的情况,在实际应用中应该尽量少用。
4、阻塞线程:join,阻塞调用线程,直到该线程终止。
5、终止线程:abort:抛出 threadabortexception 异常让线程终止,终止后的线程不可唤醒。interrupt:抛出 threadinterruptexception 异常让线程终止,通过捕获异常可以继续执行。
6、线程优先级:abovenormal belownormal highest lowest normal,默认为normal。
三、线程的使用
线程函数通过委托传递,可以不带参数,也可以带参数(只能有一个参数),可以用一个类或结构体封装参数。
namespace test { class program { static void main(string[] args) { thread t1 = new thread(new threadstart(testmethod)); thread t2 = new thread(new parameterizedthreadstart(testmethod)); t1.isbackground = true; t2.isbackground = true; t1.start(); t2.start("hello"); console.readkey(); } public static void testmethod() { console.writeline("不带参数的线程函数"); } public static void testmethod(object data) { string datastr = data as string; console.writeline("带参数的线程函数,参数为:{0}", datastr); } } }
四、线程池
由于线程的创建和销毁需要耗费一定的开销,过多的使用线程会造成内存资源的浪费,出于对性能的考虑,于是引入了线程池的概念。线程池维护一个请求队列,线程池的代码从队列提取任务,然后委派给线程池的一个线程执行,线程执行完不会被立即销毁,这样既可以在后台执行任务,又可以减少线程创建和销毁所带来的开销。
线程池线程默认为后台线程(isbackground)。
namespace test { class program { static void main(string[] args) { //将工作项加入到线程池队列中,这里可以传递一个线程参数 threadpool.queueuserworkitem(testmethod, "hello"); console.readkey(); } public static void testmethod(object data) { string datastr = data as string; console.writeline(datastr); } } }
五、task类
使用threadpool的queueuserworkitem()方法发起一次异步的线程执行很简单,但是该方法最大的问题是没有一个内建的机制让你知道操作什么时候完成,有没有一个内建的机制在操作完成后获得一个返回值。为此,可以使用system.threading.tasks中的task类。
构造一个task<tresult>对象,并为泛型tresult参数传递一个操作的返回类型。
namespace test { class program { static void main(string[] args) { task<int32> t = new task<int32>(n => sum((int32)n), 1000); t.start(); t.wait(); console.writeline(t.result); console.readkey(); } private static int32 sum(int32 n) { int32 sum = 0; for (; n > 0; --n) checked{ sum += n;} //结果太大,抛出异常 return sum; } } }
一个任务完成时,自动启动一个新任务。
一个任务完成后,它可以启动另一个任务,下面重写了前面的代码,不阻塞任何线程。
namespace test { class program { static void main(string[] args) { task<int32> t = new task<int32>(n => sum((int32)n), 1000); t.start(); //t.wait(); task cwt = t.continuewith(task => console.writeline("the result is {0}",t.result)); console.readkey(); } private static int32 sum(int32 n) { int32 sum = 0; for (; n > 0; --n) checked{ sum += n;} //结果溢出,抛出异常 return sum; } } }
六、委托异步执行
委托的异步调用:begininvoke() 和 endinvoke()
namespace test { public delegate string mydelegate(object data); class program { static void main(string[] args) { mydelegate mydelegate = new mydelegate(testmethod); iasyncresult result = mydelegate.begininvoke("thread param", testcallback, "callback param"); //异步执行完成 string resultstr = mydelegate.endinvoke(result); } //线程函数 public static string testmethod(object data) { string datastr = data as string; return datastr; } //异步回调函数 public static void testcallback(iasyncresult data) { console.writeline(data.asyncstate); } } }
七、线程同步
1)原子操作(interlocked):所有方法都是执行一次原子读取或一次写入操作。
2)lock()语句:避免锁定public类型,否则实例将超出代码控制的范围,定义private对象来锁定。
3)monitor实现线程同步
通过monitor.enter() 和 monitor.exit()实现排它锁的获取和释放,获取之后独占资源,不允许其他线程访问。
还有一个tryenter方法,请求不到资源时不会阻塞等待,可以设置超时时间,获取不到直接返回false。
4)readerwriterlock
当对资源操作读多写少的时候,为了提高资源的利用率,让读操作锁为共享锁,多个线程可以并发读取资源,而写操作为独占锁,只允许一个线程操作。
5)事件(event)类实现同步
事件类有两种状态,终止状态和非终止状态,终止状态时调用waitone可以请求成功,通过set将时间状态设置为终止状态。
1)autoresetevent(自动重置事件)
2)manualresetevent(手动重置事件)
6)信号量(semaphore)
信号量是由内核对象维护的int变量,为0时,线程阻塞,大于0时解除阻塞,当一个信号量上的等待线程解除阻塞后,信号量计数+1。
线程通过waitone将信号量减1,通过release将信号量加1,使用很简单。
7)互斥体(mutex)
独占资源,用法与semaphore相似。
8)跨进程间的同步
通过设置同步对象的名称就可以实现系统级的同步,不同应用程序通过同步对象的名称识别不同同步对象。
以上就是深入了解c#多线程编程的详细内容,更多关于c# 多线程的资料请关注其它相关文章!