转载自 http://blog.csdn.net/livelylittlefish/article/details/2735440

本博客(http://blog.csdn.net/livelylittlefish)贴出作者(三二一、小鱼)相关研究、学习内容所做的笔记,欢迎广大朋友指正!

C#读写者线程(用AutoResetEvent实现同步)

1. AutoResetEvent简介

通知正在等待的线程已发生事件。无法继承此类。

常用方法简介:

  • AutoResetEvent(bool initialState):构造函数,用一个指示是否将初始状态设置为终止的布尔值初始化该类的新实例。

false:无信号,子线程的WaitOne方法不会被自动调用     true:有信号,子线程的WaitOne方法会被自动调用

  • public bool Reset ():将事件状态设置为非终止状态,导致线程阻止;如果该操作成功,则返回true;否则,返回false。
  • public bool Set ():将事件状态设置为终止状态,允许一个或多个等待线程继续;如果该操作成功,则返回true;否则,返回false。

对于具有 EventResetMode.AutoReset(包括 AutoResetEvent)的 EventWaitHandle,Set 方法释放单个线程。如果没有等待线程,等待句柄将一直保持终止状态,直到某个线程尝试等待它,或者直到它的 Reset 方法被调用。

对于具有 EventResetMode.ManualReset(包括 ManualResetEvent)的 EventWaitHandle,调用Set 方法将使等待句柄一直保持终止状态,直到它的 Reset 方法被调用。

  • WaitOne方法

当在派生类中重写时,阻止当前线程,直到当前的 WaitHandle 收到信号。

  1. WaitHandle.WaitOne () 当在派生类中重写时,阻止当前线程,直到当前的 WaitHandle 收到信号。 由.NET Compact Framework 支持。
  2. WaitHandle.WaitOne(Int32, Boolean)  在派生类中被重写时,阻止当前线程,直到当前的WaitHandle 收到信号,使用 32 位有符号整数度量时间间隔并指定是否在等待之前退出同步域。由 .NET Compact Framework 支持。
  3. WaitHandle.WaitOne(TimeSpan, Boolean)  在派生类中被重写时,阻止当前线程,直到当前实例收到信号,使用 TimeSpan 度量时间间隔并指定是否在等待之前退出同步域。

2. 读写者线程例子

本例子中,主线程作为写线程,要对某个数据(本例中是个变量)赋值(即写动作),而读线程则等待写线程每次写完数据发出通知,待读线程收到通知后,将数据读出并显示。

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading;
  5. namespace TestAutoResetEvent
  6. {
  7. /// <summary>
  8. /// 读写者线程
  9. /// 主线程写,子线程读,且只有将数据写入后,读线程才能将其读出
  10. /// </summary>
  11. class Program
  12. {
  13. //写线程将数据写入myData
  14. staticint myData = 100;
  15. //读写次数
  16. constint readWriteCount = 10;
  17. //false:初始时没有信号
  18. static AutoResetEvent autoResetEvent = new AutoResetEvent(false);
  19. staticvoid Main(string[] args)
  20. {
  21. //开启一个读线程(子线程)
  22. Thread readerThread = new Thread(new ThreadStart(ReadThreadProc));
  23. readerThread.Name = "ReaderThread";
  24. readerThread.Start();
  25. for (int i = 1; i <= readWriteCount; i++)
  26. {
  27. Console.WriteLine("MainThread writing : {0}", i);
  28. //主(写)线程将数据写入
  29. myData = i;
  30. //主(写)线程发信号,说明值已写过了
  31. //即通知正在等待的线程有事件发生
  32. autoResetEvent.Set();
  33. Thread.Sleep(0);
  34. }
  35. //终止线程
  36. readerThread.Abort();
  37. }
  38. staticvoid ReadThreadProc()
  39. {
  40. while (true)
  41. {
  42. //在数据被写入前,读线程等待(实际上是等待写线程发出数据写完的信号)
  43. autoResetEvent.WaitOne();
  44. Console.WriteLine("{0} reading : {1}", Thread.CurrentThread.Name, myData);
  45. }
  46. }
  47. }
  48. }<pre></pre>
using System;
using System.Collections.Generic;
using System.Text; using System.Threading; namespace TestAutoResetEvent
{
///
/// 读写者线程
/// 主线程写,子线程读,且只有将数据写入后,读线程才能将其读出
///
class Program
{
//写线程将数据写入myData
static int myData = 100; //读写次数
const int readWriteCount = 10; //false:初始时没有信号
static AutoResetEvent autoResetEvent = new AutoResetEvent(false); static void Main(string[] args)
{
//开启一个读线程(子线程)
Thread readerThread = new Thread(new ThreadStart(ReadThreadProc));
readerThread.Name = "ReaderThread";
readerThread.Start(); for (int i = 1; i <= readWriteCount; i++)
{
Console.WriteLine("MainThread writing : {0}", i); //主(写)线程将数据写入
myData = i; //主(写)线程发信号,说明值已写过了
//即通知正在等待的线程有事件发生
autoResetEvent.Set(); Thread.Sleep(0);
} //终止线程
readerThread.Abort();
} static void ReadThreadProc()
{
while (true)
{
//在数据被写入前,读线程等待(实际上是等待写线程发出数据写完的信号)
autoResetEvent.WaitOne();
Console.WriteLine("{0} reading : {1}", Thread.CurrentThread.Name, myData);
}
}
}
}

运行结果如下:

由运行结果可以看出,写线程写入的数据有丢失,主要原因是写线程没有给读线程留足够的时间去进行读操作。

3. 对1进行修改

将主线程睡眠时间改为非0值,观察运行结果。

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading;
  5. namespace TestAutoResetEvent
  6. {
  7. /// <summary>
  8. /// 读写者线程
  9. /// 主线程写,子线程读,且只有将数据写入后,读线程才能将其读出
  10. /// </summary>
  11. class Program
  12. {
  13. //写线程将数据写入myData
  14. staticint myData = 100;
  15. //读写次数
  16. constint readWriteCount = 10;
  17. //false:初始时没有信号
  18. static AutoResetEvent autoResetEvent = new AutoResetEvent(false);
  19. staticvoid Main(string[] args)
  20. {
  21. //开启一个读线程(子线程)
  22. Thread readerThread = new Thread(new ThreadStart(ReadThreadProc));
  23. readerThread.Name = "ReaderThread";
  24. readerThread.Start();
  25. for (int i = 1; i <= readWriteCount; i++)
  26. {
  27. Console.WriteLine("MainThread writing : {0}", i);
  28. //主(写)线程将数据写入
  29. myData = i;
  30. //主(写)线程发信号,说明值已写过了
  31. //即通知正在等待的线程有事件发生
  32. autoResetEvent.Set();
  33. Thread.Sleep(1);
  34. }
  35. //终止线程
  36. readerThread.Abort();
  37. }
  38. staticvoid ReadThreadProc()
  39. {
  40. while (true)
  41. {
  42. //在数据被写入前,读线程等待(实际上是等待写线程发出数据写完的信号)
  43. autoResetEvent.WaitOne();
  44. Console.WriteLine("{0} reading : {1}", Thread.CurrentThread.Name, myData);
  45. }
  46. }
  47. }
  48. }
using System;
using System.Collections.Generic;
using System.Text; using System.Threading; namespace TestAutoResetEvent
{
///
/// 读写者线程
/// 主线程写,子线程读,且只有将数据写入后,读线程才能将其读出
///
class Program
{
//写线程将数据写入myData
static int myData = 100; //读写次数
const int readWriteCount = 10; //false:初始时没有信号
static AutoResetEvent autoResetEvent = new AutoResetEvent(false); static void Main(string[] args)
{
//开启一个读线程(子线程)
Thread readerThread = new Thread(new ThreadStart(ReadThreadProc));
readerThread.Name = "ReaderThread";
readerThread.Start(); for (int i = 1; i <= readWriteCount; i++)
{
Console.WriteLine("MainThread writing : {0}", i); //主(写)线程将数据写入
myData = i; //主(写)线程发信号,说明值已写过了
//即通知正在等待的线程有事件发生
autoResetEvent.Set(); Thread.Sleep(1);
} //终止线程
readerThread.Abort();
} static void ReadThreadProc()
{
while (true)
{
//在数据被写入前,读线程等待(实际上是等待写线程发出数据写完的信号)
autoResetEvent.WaitOne();
Console.WriteLine("{0} reading : {1}", Thread.CurrentThread.Name, myData);
}
}
}
}

运行结果如下:

有结果可知,当主线程睡眠时间大于0值时,读线程即有足够的时间读取写线程写入的数据。这个睡眠时间的长短可以根据实际应用中子线程的计算量设定。

4. 对1再进行修改

主线程在写完数据后根本不睡吗呢?这个时候会发生什么事情?

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading;
  5. namespace TestAutoResetEvent
  6. {
  7. /// <summary>
  8. /// 读写者线程
  9. /// 主线程写,子线程读,且只有将数据写入后,读线程才能将其读出
  10. /// </summary>
  11. class Program
  12. {
  13. //写线程将数据写入myData
  14. staticint myData = 100;
  15. //读写次数
  16. constint readWriteCount = 10;
  17. //false:初始时没有信号
  18. static AutoResetEvent autoResetEvent = new AutoResetEvent(false);
  19. staticvoid Main(string[] args)
  20. {
  21. //开启一个读线程(子线程)
  22. Thread readerThread = new Thread(new ThreadStart(ReadThreadProc));
  23. readerThread.Name = "ReaderThread";
  24. readerThread.Start();
  25. for (int i = 1; i <= readWriteCount; i++)
  26. {
  27. Console.WriteLine("MainThread writing : {0}", i);
  28. //主(写)线程将数据写入
  29. myData = i;
  30. //主(写)线程发信号,说明值已写过了
  31. //即通知正在等待的线程有事件发生
  32. autoResetEvent.Set();
  33. //Thread.Sleep(1);
  34. }
  35. //终止线程
  36. readerThread.Abort();
  37. }
  38. staticvoid ReadThreadProc()
  39. {
  40. while (true)
  41. {
  42. //在数据被写入前,读线程等待(实际上是等待写线程发出数据写完的信号)
  43. autoResetEvent.WaitOne();
  44. Console.WriteLine("{0} reading : {1}", Thread.CurrentThread.Name, myData);
  45. }
  46. }
  47. }
  48. }<pre></pre>
using System;
using System.Collections.Generic;
using System.Text; using System.Threading; namespace TestAutoResetEvent
{
///
/// 读写者线程
/// 主线程写,子线程读,且只有将数据写入后,读线程才能将其读出
///
class Program
{
//写线程将数据写入myData
static int myData = 100; //读写次数
const int readWriteCount = 10; //false:初始时没有信号
static AutoResetEvent autoResetEvent = new AutoResetEvent(false); static void Main(string[] args)
{
//开启一个读线程(子线程)
Thread readerThread = new Thread(new ThreadStart(ReadThreadProc));
readerThread.Name = "ReaderThread";
readerThread.Start(); for (int i = 1; i <= readWriteCount; i++)
{
Console.WriteLine("MainThread writing : {0}", i); //主(写)线程将数据写入
myData = i; //主(写)线程发信号,说明值已写过了
//即通知正在等待的线程有事件发生
autoResetEvent.Set(); //Thread.Sleep(1);
} //终止线程
readerThread.Abort();
} static void ReadThreadProc()
{
while (true)
{
//在数据被写入前,读线程等待(实际上是等待写线程发出数据写完的信号)
autoResetEvent.WaitOne();
Console.WriteLine("{0} reading : {1}", Thread.CurrentThread.Name, myData);
}
}
}
}

运行结果如下:

有结果可知,不睡眠的情况和睡眠时间为0(即Thread.Sleep(0);)效果产不多,只是不睡眠丢失的数据更多了。

5. 对1再修改

将传递给AutoResetEvent的构造函数的参数设置为true,观察运行结果。

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading;
  5. namespace TestAutoResetEvent
  6. {
  7. /// <summary>
  8. /// 读写者线程
  9. /// 主线程写,子线程读,且只有将数据写入后,读线程才能将其读出
  10. /// </summary>
  11. class Program
  12. {
  13. //写线程将数据写入myData
  14. staticint myData = 100;
  15. //读写次数
  16. constint readWriteCount = 10;
  17. //false:初始时没有信号
  18. static AutoResetEvent autoResetEvent = new AutoResetEvent(true);
  19. staticvoid Main(string[] args)
  20. {
  21. //开启一个读线程(子线程)
  22. Thread readerThread = new Thread(new ThreadStart(ReadThreadProc));
  23. readerThread.Name = "ReaderThread";
  24. readerThread.Start();
  25. for (int i = 1; i <= readWriteCount; i++)
  26. {
  27. Console.WriteLine("MainThread writing : {0}", i);
  28. //主(写)线程将数据写入
  29. myData = i;
  30. //主(写)线程发信号,说明值已写过了
  31. //即通知正在等待的线程有事件发生
  32. autoResetEvent.Set();
  33. Thread.Sleep(0);
  34. }
  35. //终止线程
  36. readerThread.Abort();
  37. }
  38. staticvoid ReadThreadProc()
  39. {
  40. while (true)
  41. {
  42. //在数据被写入前,读线程等待(实际上是等待写线程发出数据写完的信号)
  43. autoResetEvent.WaitOne();
  44. Console.WriteLine("{0} reading : {1}", Thread.CurrentThread.Name, myData);
  45. }
  46. }
  47. }
  48. }<pre></pre>
using System;
using System.Collections.Generic;
using System.Text; using System.Threading; namespace TestAutoResetEvent
{
///
/// 读写者线程
/// 主线程写,子线程读,且只有将数据写入后,读线程才能将其读出
///
class Program
{
//写线程将数据写入myData
static int myData = 100; //读写次数
const int readWriteCount = 10; //false:初始时没有信号
static AutoResetEvent autoResetEvent = new AutoResetEvent(true); static void Main(string[] args)
{
//开启一个读线程(子线程)
Thread readerThread = new Thread(new ThreadStart(ReadThreadProc));
readerThread.Name = "ReaderThread";
readerThread.Start(); for (int i = 1; i <= readWriteCount; i++)
{
Console.WriteLine("MainThread writing : {0}", i); //主(写)线程将数据写入
myData = i; //主(写)线程发信号,说明值已写过了
//即通知正在等待的线程有事件发生
autoResetEvent.Set(); Thread.Sleep(0);
} //终止线程
readerThread.Abort();
} static void ReadThreadProc()
{
while (true)
{
//在数据被写入前,读线程等待(实际上是等待写线程发出数据写完的信号)
autoResetEvent.WaitOne();
Console.WriteLine("{0} reading : {1}", Thread.CurrentThread.Name, myData);
}
}
}
}

运行结果如下:

若将主线程的睡眠时间改为任意非0值,其运行结果均为下图所示的结果。

                         

6. 其他修改

将主线程调用AutoResetEvent对象的Set方法删除,分别对AutoResetEvent的构造函数的参数为false和true观察运行结果。

为false,运行结果如下图所示。

为true,运行结果如下图所示。

至此,我想我们应该明白AutoResetEvent构造函数的参数的意义了。 false:无信号,子线程的WaitOne方法不会被自动调用; true:有信号,子线程的WaitOne方法会被自动调用。

C#读写者线程(用AutoResetEvent实现同步)的更多相关文章

  1. C#读写者线程(用AutoResetEvent实现同步)(转载)

    C#读写者线程(用AutoResetEvent实现同步) 1. AutoResetEvent简介 通知正在等待的线程已发生事件.无法继承此类. 常用方法简介: AutoResetEvent(bool ...

  2. Redis总结(五)缓存雪崩和缓存穿透等问题 Web API系列(三)统一异常处理 C#总结(一)AutoResetEvent的使用介绍(用AutoResetEvent实现同步) C#总结(二)事件Event 介绍总结 C#总结(三)DataGridView增加全选列 Web API系列(二)接口安全和参数校验 RabbitMQ学习系列(六): RabbitMQ 高可用集群

    Redis总结(五)缓存雪崩和缓存穿透等问题   前面讲过一些redis 缓存的使用和数据持久化.感兴趣的朋友可以看看之前的文章,http://www.cnblogs.com/zhangweizhon ...

  3. 线程安全、数据同步之 synchronized 与 Lock

    本文Demo下载传送门 写在前面 本篇文章讲的东西都是Android开源网络框架NoHttp的核心点,当然线程.多线程.数据安全这是Java中就有的,为了运行快我们用一个Java项目来讲解. 为什么要 ...

  4. java 线程之对象的同步和异步

    一.多线程环境下的同步与异步 同步:A线程要请求某个资源,但是此资源正在被B线程使用中,因为同步机制存在,A线程请求不到,怎么办,A线程只能等待下去. package com.jalja.org.th ...

  5. JAVA多线程提高二:传统线程的互斥与同步&传统线程通信机制

    本文主要是回顾线程之间互斥和同步,以及线程之间通信,在最开始没有juc并发包情况下,如何实现的,也就是我们传统的方式如何来实现的,回顾知识是为了后面的提高作准备. 一.线程的互斥 为什么会有线程的互斥 ...

  6. GIL 线程池 进程池 同步 异步

    1.GIL(理论 重点)2.线程池 进程池3.同步 异步 GIL 是一个全局解释器锁,是一个互斥锁 为了防止竞争解释器资源而产生的 为何需要gil:因为一个python.exe进程中只有一份解释器,如 ...

  7. 5.4.1 sequenceFile读写文件、记录边界、同步点、压缩排序、格式

    5.4.1      sequenceFile读写文件.记录边界.同步点.压缩排序.格式 HDFS和MapReduce是针对大文件优化的存储文本记录,不适合二进制类型的数据.SequenceFile作 ...

  8. Java并发——线程间通信与同步技术

    传统的线程间通信与同步技术为Object上的wait().notify().notifyAll()等方法,Java在显示锁上增加了Condition对象,该对象也可以实现线程间通信与同步.本文会介绍有 ...

  9. java 线程​基本概念 可见性 同步

    开发高性能并发应用不是一件容易的事情.这类应用的例子包括高性能Web服务器.游戏服务器和搜索引擎爬虫等.这样的应用可能需要同时处理成千上万个请求.对于这样的应用,一般采用多线程或事件驱动的架构.对于J ...

随机推荐

  1. 利用DescriptionAttribute定义枚举值的描述信息 z

    System.ComponentModel命名空间下有个名为DescriptionAttribute的类用于指定属性或事件的说明,我所调用的枚举值描述信息就是DescriptionAttribute类 ...

  2. selenium python (四)键盘事件

    #!/usr/bin/python# -*- coding: utf-8 -*-__author__ = 'zuoanvip' #在实际测试过程中,有时候我们需要使用tab键将焦点转移到下一个需要操作 ...

  3. js代码大全

    超级实用且不花哨的js代码大全 事件源对象event.srcElement.tagNameevent.srcElement.type 捕获释放event.srcElement.setCapture() ...

  4. static_cast .xml

    pre{ line-height:1; color:#1e1e1e; background-color:#d2d2d2; font-size:16px;}.sysFunc{color:#627cf6; ...

  5. 【LeetCode】204 - Count Primes

    Description:Count the number of prime numbers less than a non-negative number, n. Hint: Let's start ...

  6. Quartz与Spring集成

    关于Quartz的基本知识,这里就不再多说,可以参考Quartz的example. 这里主要要说的是,个人在Quartz和Spring集成的过程中,遇到的问题和个人理解. 首先来说说个人的理解: 1. ...

  7. C# int.Parse()、int.TryParse()与Convert.ToInt32()的区别

    1.(int)是一种类型转换:当我们觟nt类型到long,float,double,decimal类型,可以使用隐式转换,但是当我们从long类型到int类型就需要使用显式转换,否则会产生编译错误. ...

  8. 写好Hive 程序的五个提示

    转自http://www.alidata.org/archives/622 使用Hive可以高效而又快速地编写复杂的MapReduce查询逻辑.但是某些情况下,因为不熟悉数据特性,或没有遵循Hive的 ...

  9. Python线程

    原文出处: AstralWind 1. 线程基础 1.1. 线程状态 线程有5种状态,状态转换的过程如下图所示: 1.2. 线程同步(锁) 多线程的优势在于可以同时运行多个任务(至少感觉起来是这样). ...

  10. .net调用java webservice基于JBOSS服务器 学习笔记(一)

    1.遇到数组类型或List等复杂数据类型是,需要对其进行包装,就是将复杂数据类型放到一个类里面: public class VOCargoJTWS { /** JT列表 */ private List ...