转载自 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. YII 快速创建项目GII

    Yii 是一个基于组件.纯OOP的.用于开发大型 Web 应用的高性能PHP框架. 它将Web编程中的可重用性发挥到极致,能够显著加速开发进程 .Yii适合大流量的应用,如门户.BBS.CMS及B2B ...

  2. django-grappelli 安装配置

    在python34/scripts文件夹下pip3 install django-grappelli pip安装一般会装在python34的tools或lib之类的文件夹下,一定要找到那个文件夹,gr ...

  3. 从date中获取相应信息

    创建测试用表: CREATE OR REPLACE VIEW v AS SELECT TO_DATE('2015-5-5 13:14:15', 'YYYY-MM-DD HH24:MI:SS') AS ...

  4. Asp.Net学习进度备忘(第一步:ASP.NET Web Forms)

    书签:“Web Pages”和“MVC”跳过:另外跳过的内容有待跟进 __________________ 学习资源:W3School. _________________ 跳过的内容: 1.ASP. ...

  5. 上海洋码头(www.ymatou.com)急招技术人才(职位:互联网软件开发工程师,.NET网站架构师,Web前端开发工程师,高级测试工程师,产品经理)

    对公司招聘职位有兴趣的童鞋可以把简历发送到zhangzhiqiang@ymatou.com,我们HR会快速给你答复. 互联网软件开发工程师 岗位职责: 1.参与洋码头各个平台(www.ymatou.c ...

  6. activity切换时的overridePendingTransition动画效

      注意,切换方法overridePendingTransition只能在startActivity和finish方法之后调用.第一个参数为第一个Activity离开时的动画,第二参数为所进入的Act ...

  7. Fedora20 和ubuntu 14.04 chrome标签中文乱码

    作为两个流行的桌面发行版本,Fedora和ubuntu最新版本都存在chrome标签中文乱码问题. 下面是解决办法,都来自百度贴吧. 1.ubuntu 系列: 解决办法就是: 编辑/etc/fonts ...

  8. leetcode—jump game

    1.题目描述 Given an array of non-negative integers, you are initially positioned at the first index of t ...

  9. html5_common.js

    (function(){ this.sendAjax = function(url,func,formData,type){ type = type || "POST"; //默认 ...

  10. 第三百四十六天 how can I 坚持

    徐斌的电脑来了,thinkpad,感觉还好,电脑也就这样,联想..不好说,不做评论,末日王者吧. 为什么写博客tab键不管用了呢. 下午又去奥体跑了一圈,好累,刚跑完腿疼,现在还好. 还没洗澡呢,都这 ...