码迷,mamicode.com
首页 > 编程语言 > 详细

netcore 俩个线程乱序调整

时间:2021-06-15 18:31:41      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:mamicode   ref   color   task   线程   console   inter   syn   for   

 

 

 class Program
    {
        public static long flgVal = 0;

        static void Main(string[] args)
        {
            int n = 100;
            Task.Run(() => DaMi(n));
            Task.Run(() => LaoShu(n));

            Console.Read();
        }

        public async static Task LaoShu(int n)
        {

            for (int i = 0; i < n; i++)
            {
                while (true)
                {

                    if (Interlocked.Read(ref flgVal) == 0)
                    {
                        break;
                    }
                }
                Console.Write("老鼠");
                Interlocked.Increment(ref flgVal);
            }
        }

        public async static Task DaMi(int n)
        {

            for (int i = 0; i < n; i++)
            {
                while (true)
                {

                    if (Interlocked.Read(ref flgVal) == 1)
                    {
                        break;
                    }
                }

                Console.Write("爱大米  ");
                Interlocked.Decrement(ref flgVal);


            }
        }







    }

技术图片

 

netcore 俩个线程乱序调整

标签:mamicode   ref   color   task   线程   console   inter   syn   for   

原文地址:https://www.cnblogs.com/puzi0315/p/14885000.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!