摘要:
一、Thread的基本使用 1、Start 不带参数 static void Main(string[] args) { Thread thread = new Thread(OneTest); thread.Name = "Test"; thread.Start(); Console.ReadKe 阅读全文
摘要:
一、什么是线程池? ThreadPool是.Net Framework 2.0版本中出现的。 ThreadPool出现的背景:Thread功能繁多,而且对线程数量没有管控,对于线程的开辟和销毁要消耗大量的资源。每次new一个THread都要重新开辟内存。 如果某个线程的创建和销毁的代价比较高,同时这 阅读全文