理解c#的多线程的时间片分配

 class ThreadClass {
        public static void MyThread() {
            for (int x = 0; x < 100; x++) {
                Console.ForegroundColor = ConsoleColor.Red;
                Console.Write(x.ToString("000")+" ");
            }
        }
        static void Main(string[] args) {

            Thread thrd1 = new Thread(new ThreadStart(MyThread));
            thrd1.Start();
            for (int x = 300; x < 400; x++) {
                Console.ForegroundColor = ConsoleColor.Green;
                Console.Write((x).ToString("000")+" " );
            }

            Console.ReadLine();
        }

    }

运行,结果如下图:

为什么“000”会显示为绿色?共有两个线程,先运行main中的Console.ForegroundColor = ConsoleColor.Green;和Console.ForegroundColor = ConsoleColor.Green;,显示绿色300->运行MyThread中的Console.ForegroundColor = ConsoleColor.Red->执行main的Console.ForegroundColor->Mythread中的Console.Write(x.ToString("000")+" ");显示绿色000。

同理,“303”、“310”、“312”等显示为红色,而“”003“、”004“、”005“等显示为绿色。


可见多线程的时间片的分配具有很大的不确定性,线程间一般不应共享同一个变量。





Console.ForegroundColor = ConsoleColor.Red;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值