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

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

 

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());
        }
    }
}


 

 

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


 

  • 2
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值