C # Multi-threaded waiting for all threads to end an issue

Source: Internet
Author: User

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 using System;using System.Threading;namespace ConsoleApplication1{    class Program    {        private static AutoResetEvent[] events;        static void Main(string[] args)        {            int threadNum = 10;            Thread[] thread = new Thread[threadNum];            events = new AutoResetEvent[threadNum];            for (int i = 0; i < threadNum; i++)            {                var waithandler = new AutoResetEvent(false);                events[i] = waithandler;                ThreadStart starter = delegate                {                    var param = new Tuple<string, AutoResetEvent>("test print:" + i, waithandler);                    Print(param);                };                thread[i] = new Thread(starter)                {                    Name = "thread" + i.ToString()                };            }            for (int i = 0; i < threadNum; i++)            {                thread[i].Start();            }            WaitHandle.WaitAll(events);            Console.WriteLine("Completed!");            Console.Read();        }        private static void Print(object param)        {            var p = (Tuple<string, AutoResetEvent>)param;            Console.WriteLine(Thread.CurrentThread.Name + ": Begin!");            Console.WriteLine(Thread.CurrentThread.Name + ": Print" + p.Item1);            Thread.Sleep(300);            Console.WriteLine(Thread.CurrentThread.Name + ": End!");            p.Item2.Set();        }    }}

Once set, actually using ManualResetEvent is enough.

1234567891011121314151617181920212223242526272829303132333435363738 using System;using System.Collections.Generic;using System.Threading;namespace ConsoleApplication1{    class Program    {        static void Main(string[] args)        {            var waits = new List<EventWaitHandle>();            for (int i = 0; i < 10; i++)            {                var handler = new ManualResetEvent(false);                waits.Add(handler);                new Thread(new ParameterizedThreadStart(Print))                {                    Name = "thread" + i.ToString()                }.Start(new Tuple<string, EventWaitHandle>("test print:" + i, handler));            }            WaitHandle.WaitAll(waits.ToArray());            Console.WriteLine("Completed!");            Console.Read();        }         private static void Print(object param)        {            var p = (Tuple<string, EventWaitHandle>)param;            Console.WriteLine(Thread.CurrentThread.Name + ": Begin!");            Console.WriteLine(Thread.CurrentThread.Name + ": Print" + p.Item1);            Thread.Sleep(300);            Console.WriteLine(Thread.CurrentThread.Name + ": End!");            p.Item2.Set();        }    }}




From for notes (Wiz)

C # Multi-threaded waiting for all threads to end an issue

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.