AutoResetEvent.WaitAll 等到人生三大事,然后大笑开心。

简介: 例子描述:人生都有追求幸福理想,下面就用三条线程得到房子,车子,妻子,等待全部得到后,显示人生圆满。   View Code using System;using System.Collections.Generic;using System.Windows.Forms;namespace WindowsApplication1 {     static class Program     {         ///          /// 应用程序的主入口点。

例子描述:人生都有追求幸福理想,下面就用三条线程得到房子,车子,妻子,等待全部得到后,显示人生圆满。

 

img_405b18b4b6584ae338e0f6ecaf736533.gif View Code
using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace WindowsApplication1
{
     static  class Program
    {
         ///   <summary>
        
///  应用程序的主入口点。
        
///   </summary>
        [MTAThread]  // 不支持一个 STA 线程上针对多个句柄的 WaitAll。解决办法把STAThread改成MTAThread
         static  void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault( false);
            Application.Run( new Form1());
        }
    }
}

 

img_405b18b4b6584ae338e0f6ecaf736533.gif View Code
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Threading;

namespace WindowsApplication1
{
     public  partial  class Form1 : Form
    {
         public Form1()
        {
            InitializeComponent();
        }

 

         private  void button1_Click( object sender, EventArgs e)
        {
             // 定义一个人对象
            Person person =  new Person();

             // 这个人去干三件大事
            Thread GetCarThread =  new Thread( new ThreadStart(person.GetCar));
            GetCarThread.Start();

            Thread GetHouseThead =  new Thread( new ThreadStart(person.GetHouse));
            GetHouseThead.Start();

            Thread GetWillThead =  new Thread( new ThreadStart(person.GetWife));
            GetWillThead.Start();

             // 等待三件事都干成的喜讯通知信息
            AutoResetEvent.WaitAll(person.autoEvents);

             // 这个人就开心了。
            person.ShowHappy();
        }

     }

     public  class Person
    {
         // 建立事件数组
         public AutoResetEvent[] autoEvents =  null;

         public Person()
        {
            autoEvents =  new AutoResetEvent[]
            {
                 new AutoResetEvent( false),
                 new AutoResetEvent( false),
                 new AutoResetEvent( false)
            };
        }


         public  void GetCar()
        {
            MessageBox.Show( " 捡到奔驰 ");
            autoEvents[ 0].Set();
        }

         public  void GetHouse()
        {
            MessageBox.Show( " 赚到房子 ");
            autoEvents[ 1].Set();
        }

         public  void GetWife()
        {
            MessageBox.Show( " 骗到老婆 ");
            autoEvents[ 2].Set();
        }


         public  void ShowHappy()
        {
            Messag eBox.Show( " 人生要有的都有了,好开心 " );
        }
    }
}

 

 

 注意:

AutoResetEvent.WaitAll();//AutoResetEvent继承WaitHandle 等同于:WaitHandle.WaitAll();

WaitHandles 的数目必须少于或等于 64 个。

目录
相关文章
|
1月前
|
设计模式 Java 关系型数据库
这个Offer开不开门?
这个Offer开不开门?
18 1
这个Offer开不开门?
|
3月前
|
监控 安全 IDE
别再瞎用了!synchronized的正确使用姿势在这里!
别再瞎用了!synchronized的正确使用姿势在这里!
90 4
|
5月前
|
Java
当JAVA多线程遇上wait()和notify():一场奇妙的邂逅
【6月更文挑战第20天】JAVA多线程中,wait()和notify()是线程通信的关键。wait()让线程释放锁进入等待,直到被notify()或notifyAll()唤醒。它们用于协调如生产者-消费者问题中的线程协作,确保在同步块内调用,并伴随条件检查以防止虚假唤醒。示例代码展示了一个简单的共享队列,其中生产和消费使用wait/notify实现同步。
36 0
|
存储 前端开发 API
C# 从做早餐看同步异步
C# 从做早餐看同步异步
56 0
|
存储 Java 程序员
一个线程的打工故事
一个线程的打工故事
115 0
啥?小胖连公平锁 & 非公平锁都不知道?真的菜!(上)
啥?小胖连公平锁 & 非公平锁都不知道?真的菜!
啥?小胖连公平锁 & 非公平锁都不知道?真的菜!(上)
深夜!小胖问我,什么是自旋锁?怎么使用?适用场景是啥?
深夜!小胖问我,什么是自旋锁?怎么使用?适用场景是啥?
深夜!小胖问我,什么是自旋锁?怎么使用?适用场景是啥?
|
人工智能 安全 数据挖掘
这么一搞,再也不怕线程打架了
假如我们需要处理一个文本文件,里面有 100万行数据,需要对每条数据做处理,比如将每行数据的数字做一个运算,放入到另一个文件里。
146 0
这么一搞,再也不怕线程打架了