理解c#的多執行緒的時間片分配

俱會一處發表於2017-08-06
 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;

相關文章