首页 > 开发 > 综合 > 正文

C#中使用多线程编程之线程池

2024-07-21 02:27:05
字体:
来源:转载
供稿:网友
中国最大的web开发资源网站及技术社区,

1.     引言

近来在研究c#多线程编程碰到了线程池的概念。不懂,我搜,于是在msdn和csdn上寻寻觅觅一番终于搞明白,“缘”来如此,安装本人理解修改后写下这篇文章,希望对后来者有所帮助。

 

2.     线程池的概念

可以使用线程池来根据应用程序的需要更为有效地利用多个线程。许多应用程序使用多个线程,但这些线程经常在休眠状态中耗费大量的时间来等待事件发生,编程者手动管理多个线程也是一件比较麻烦的事情。事实上,使用线程池就是为应用程序提供一个由系统管理的辅助线程池,从而使您可以集中精力于应用程序任务而不是线程管理。

实际上,如果要执行一些需要多个线程的较短任务,则使用 threadpool 类是利用多个线程的最方便且最好的方法。使用线程池能够优化这些任务的执行过程,从而提高吞吐量,它不仅能够使系统针对此进程优化该执行过程,而且还能够使系统针对计算机上的其他进程优化该执行过程,即使您的应用程序对这些进程一无所知,系统也能做到这一点。使用线程池使系统能够在考虑到计算机上的所有当前进程后对线程时间片进行优化。

.net framework 出于以下几个目的使用线程池:异步调用、system.net 套接字连接、异步 i/o 完成以及计时器与注册的等待操作等等。

每个进程只有一个threadpool对象。线程池在您第一次调用 threadpool.queueuserworkitem 时创建,或者在一个计时器或注册的等待操作将一个回调方法排入队列时创建。一个线程监视所有已排队到线程池中的任务。当某项任务完成后,线程池中的线程将执行相应的回调方法。在对一个工作项进行排队之后将无法取消它。

通过调用system.threading.threadpool.queueuserworkitem(waitcallback)来使用线程池,waitcallback是要添加到队列中的方法。也可以通过使用system.threading.threadpool.registerwaitforsingleobject()并传递 waithandle来将与等待操作相关的工作项排队到线程池中。在这两种情况下,线程池都使用或创建一个后台线程来调用回调方法。

在以下情况,适合于创建并管理自己的线程而不是使用 threadpool:

1)如果您需要使一个任务具有特定的优先级。

2)如果您具有可能会长时间运行(并因此阻塞其他任务)的任务。

3)如果您需要将线程放置到单线程单元中(所有 threadpool 线程均处于多线程单元中)。

4)如果您需要与线程关联的永久标识。例如,您可能想使用专用线程来中止该线程、将其挂起或按名称发现它。

 

3.     示例代码

c#

//copyright (c) microsoft corporation.  all rights reserved.

//这个示例是用多线程来计算斐波纳契数列(一种整数数列, 其中每数等于前面两数之和).

using system;

using system.threading;

 

// the fibonacci class provides an interface for using an auxiliary

// thread to perform the lengthy fibonacci(n) calculation.

// n is provided to the fibonacci constructor, along with an

// event that the object signals when the operation is complete.

// the result can then be retrieved with the fibofn property.

public class fibonacci

{

    public fibonacci(int n, manualresetevent doneevent)

    {

        _n = n;

        _doneevent = doneevent;

    }

 

    // wrapper method for use with thread pool.

    public void threadpoolcallback(object threadcontext)

    {

        int threadindex = (int)threadcontext;

        console.writeline("thread {0} started...", threadindex);

        _fibofn = calculate(_n);

        console.writeline("thread {0} result calculated...", threadindex);

        _doneevent.set();

    }

 

    // recursive method that calculates the nth fibonacci number.

    public int calculate(int n)

    {

        if (n <= 1)

        {

            return n;

        }

        else

        {

            return calculate(n - 1) + calculate(n - 2);

        }

    }

 

    public int n { get { return _n; } }

    private int _n;

 

    public int fibofn { get { return _fibofn; } }

    private int _fibofn;

 

    manualresetevent _doneevent;

}

 

public class threadpoolexample

{

    static void main()

    {

        const int fibonaccicalculations = 10;

 

        // one event is used for each fibonacci object

        manualresetevent[] doneevents = new manualresetevent[fibonaccicalculations];

        fibonacci[] fibarray = new fibonacci[fibonaccicalculations];

        random r = new random();

 

        // configure and launch threads using threadpool: 按次序把10个线程放入线程池

        // queueuserworkitem方法有两个版本,详情请查msdn:

//threadpool.queueuserworkitem (waitcallback)

//threadpool.queueuserworkitem (waitcallback, object)

//i是给回调方法用的带数据对象(就是参数)即i作为参数传给了threadpoolcallback()函数

        console.writeline("launching {0} tasks...", fibonaccicalculations);

        for (int i = 0; i < fibonaccicalculations; i++)

        {

            doneevents[i] = new manualresetevent(false);

            fibonacci f = new fibonacci(r.next(20,40), doneevents[i]);

            fibarray[i] = f;

            threadpool.queueuserworkitem(f.threadpoolcallback, i);

        }

 

        // wait for all threads in pool to calculation...

        waithandle.waitall(doneevents);

        console.writeline("calculations complete.");

 

        // display the results...

        for (int i= 0; i<fibonaccicalculations; i++)

        {

            fibonacci f = fibarray[i];

            console.writeline("fibonacci({0}) = {1}", f.n, f.fibofn);

        }

    }

}

参考文献

[1]http://msdn.microsoft.com/library/chs/default.asp?url=/library/chs/cpguide/html/cpconthreadpooling.asp

[2] http://msdn2.microsoft.com/en-us/library/w1w6424a(vs.80).aspx

[3] vs2005 帮助文档

 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表