信号量 AutoResetEvent与WaitHandle.WaitAll使用。

Posted LarvaAndQing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了信号量 AutoResetEvent与WaitHandle.WaitAll使用。相关的知识,希望对你有一定的参考价值。

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading;

using System.Threading.Tasks;

namespace ConsoleApplication11

{

    class Program

    {

     

        static void Main(string[] args)

        {

            AutoResetEvent[] AutoR = new AutoResetEvent[5];

            for (int i = 0; i < AutoR.Length; i++)

            {

                AutoR[i] = new AutoResetEvent(false);

                Thread td = new Thread(new ParameterizedThreadStart(ok));

                td.IsBackground = true;

                td.Start(AutoR[i]);

            }

            WaitHandle.WaitAll(AutoR);

            Console.WriteLine("全部收到信息,完成任务");

        }

        static void ok(object i)

        {

            AutoResetEvent reset = (AutoResetEvent)i;

            Console.WriteLine("程序往下执行。");

            Thread.Sleep(10000);

            reset.Set();//设置为有信号。

        }

    }
} 

 

以上是关于信号量 AutoResetEvent与WaitHandle.WaitAll使用。的主要内容,如果未能解决你的问题,请参考以下文章

AutoResetEvent信号锁 waitone set 执行一次线程退出 挺不爽的地方

c# 多线程 并发 Semaphore\AutoResetEvent都无法解决的需求~有人会吗?

AutoResetEvent waitone set进一步理解补充

多线程的AutoResetEvent

C#AutoResetEvent和ManualResetEvent的区别

线程同步之-旋转门AutoResetEvent