C#中的线程为何会被抢占?C# codeusing Systemusing System.Threadingpublic class ThreadExample{public
C#中的线程为何会被抢占?
C# code
using System;using System.Threading;public class ThreadExample{ public static void ThreadProc() { for (int i = 0; i < 10; i++) { Console.WriteLine("ThreadProc: {0}", i); } } public static void Main() { Console.WriteLine("Main thread: Start a second thread."); Thread t = new Thread(new ThreadStart(ThreadProc)); t.Start(); for (int i = 0; i < 4; i++) { Console.WriteLine("Main thread: Do some work."); Thread.Sleep(0); } Console.Read(); }}