摘要:
线程池中的所有线程都是后台线程,如果程序中的所有前台程序都结束了,那么所有的后台线程将会停止。线程池中的线程不能修改为前台线程使用范例如下:usingSystem;usingSystem.Threading;namespaceWrox.ProCSharp.Threading{classProgram{staticvoidMain(){intnWorkerThreads;intnCompletionPortThreads;ThreadPool.GetMaxThreads(outnWorkerThreads,outnCompletionPortThreads);Console.WriteLine( 阅读全文
摘要:
实现很简单就不做说明了usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading;namespacebackGroundThread{classProgram{staticvoidMain(string[]args){Threadtl=newThread(ThreadMain);tl.Name="123";tl.IsBackground=true;//设置为后台线程tl.Start();Console.WriteLine("M 阅读全文