前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >AutoResetEvent.WaitAll 等到人生三大事,然后大笑开心。

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

作者头像
跟着阿笨一起玩NET
发布2018-09-18 16:13:12
6790
发布2018-09-18 16:13:12
举报

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

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());
        }
    }
}
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()
        {
            MessageBox.Show("人生要有的都有了,好开心");
        }
    }
}

 注意:

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

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

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2013-04-10 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档