ThreadPool

命名空间: System.Threading
.Net 提供了一个线程池,不用用户自己创建。 当然执行的工作肯定是 随机的,短暂的代码。

线程池中的线程为,后台线程,即  IsBackground 属性为 true 当前台程序结束后,它们也会退出

线程池的使用。
QueueUserWorkItem  将方法排入队列以便执行。此方法在有线程池线程变得可用时执行。

//下面是我测试用的一段代码

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;

namespace ThreadPoolTest
{
    class Program
    {
        static void Main(string[] args)
        {

            object ob = (object)"hello world";
            ThreadPool.QueueUserWorkItem(new WaitCallback(ThreadCall), "hello world");
            Console.ReadLine();
        }

        static void ThreadCall(object  s)
        {

            if (s is string)
            {
                string m = (string)s;
                Console.WriteLine(m);
            }

        }
    }
}

posted @ 2009-07-17 17:44  起源  阅读(264)  评论(0)    收藏  举报