C# 多线程

c# 多线程

线程 被定义为程序的执行路径。每个线程都定义了一个独特的控制流。如果您的应用程序涉及到复杂的和耗时的操作,那么设置不同的线程执行路径往往是有益的,每个线程执行特定的工作。

线程是轻量级进程。一个使用线程的常见范例是现代操作系统中并行编程的实现。使用线程节省了 cpu 周期的浪费,同时提高了应用程序的效率。

到目前为止我们编写的程序是一个单线程作为应用程序的运行范例的单一的过程运行的。但是,这样子应用程序同时只能执行一个任务。为了同时执行多个任务,它可以被划分为更小的线程。

 

1. 线程生命周期

线程生命周期开始于 system.threading.thread 类的对象被创建时,结束于线程被终止或完成执行时。

下面列出了线程生命周期中的各种状态:

  • 未启动状态:当线程范例被创建但 start 方法未被调用时的状况。
  • 就绪状态:当线程准备好运行并等待 cpu 周期时的状况。
  • 不可运行状态:下面的几种情况下线程是不可运行的:
    • 已经调用 sleep 方法
    • 已经调用 wait 方法
    • 通过 i/o 操作阻塞
  • 死亡状态:当线程已完成执行或已中止时的状况。

 

2. 主线程

在 c# 中,system.threading.thread 类用于线程的工作。它允许创建并访问多线程应用程序中的单个线程。进程中第一个被执行的线程称为主线程

当 c# 程序开始执行时,主线程自动创建。使用 thread 类创建的线程被主线程的子线程调用。您可以使用 thread 类的 currentthread 属性访问线程。

下面的程序演示了主线程的执行:

using system;
using system.threading;

namespace multithreadingapplication
{
    class mainthreadprogram
    {
        static void main(string[] args)
        {
            thread th = thread.currentthread;
            th.name = "mainthread";
            console.writeline("this is {0}", th.name);
            console.readkey();
        }
    }
}

当上面的代码被编译和执行时,它会产生下列结果:

this is mainthread

 

3. thread 类常用的属性和方法

下表列出了 thread 类的一些常用的 属性

属性描述
currentcontext获取线程正在其中执行的当前上下文。
currentculture获取或设置当前线程的区域性。
currentprincipal获取或设置线程的当前负责人(对基于角色的安全性而言)。
currentthread获取当前正在运行的线程。
currentuiculture获取或设置资源管理器使用的当前区域性以便在运行时查找区域性特定的资源。
executioncontext获取一个 executioncontext 对象,该对象包含有关当前线程的各种上下文的信息。
isalive获取一个值,该值指示当前线程的执行状态。
isbackground获取或设置一个值,该值指示某个线程是否为后台线程。
isthreadpoolthread获取一个值,该值指示线程是否属于托管线程池。
managedthreadid获取当前托管线程的唯一标识符。
name获取或设置线程的名称。
priority获取或设置一个值,该值指示线程的调度优先级。
threadstate获取一个值,该值包含当前线程的状态。

下表列出了 thread 类的一些常用的 方法

序号方法名 & 描述
1public void abort()在调用此方法的线程上引发 threadabortexception,以开始终止此线程的过程。调用此方法通常会终止线程。
2public static localdatastoreslot allocatedataslot()在所有的线程上分配未命名的数据槽。为了获得更好的性能,请改用以 threadstaticattribute 属性标记的字段。
3public static localdatastoreslot allocatenameddataslot( string name) 在所有线程上分配已命名的数据槽。为了获得更好的性能,请改用以 threadstaticattribute 属性标记的字段。
4public static void begincriticalregion()通知主机执行将要进入一个代码区域,在该代码区域内线程中止或未经处理的异常的影响可能会危害应用程序域中的其他任务。
5public static void beginthreadaffinity()通知主机托管代码将要执行依赖于当前物理操作系统线程的标识的指令。
6public static void endcriticalregion()通知主机执行将要进入一个代码区域,在该代码区域内线程中止或未经处理的异常仅影响当前任务。
7public static void endthreadaffinity()通知主机托管代码已执行完依赖于当前物理操作系统线程的标识的指令。
8public static void freenameddataslot(string name)为进程中的所有线程消除名称与槽之间的关联。为了获得更好的性能,请改用以 threadstaticattribute 属性标记的字段。
9public static object getdata( localdatastoreslot slot ) 在当前线程的当前域中从当前线程上指定的槽中检索值。为了获得更好的性能,请改用以 threadstaticattribute 属性标记的字段。
10public static appdomain getdomain()返回当前线程正在其中运行的当前域。
11public static appdomain getdomainid()返回唯一的应用程序域标识符。
12public static localdatastoreslot getnameddataslot( string name ) 查找已命名的数据槽。为了获得更好的性能,请改用以 threadstaticattribute 属性标记的字段。
13public void interrupt()中断处于 waitsleepjoin 线程状态的线程。
14public void join()在继续执行标准的 com 和 sendmessage 消息泵处理期间,阻塞调用线程,直到某个线程终止为止。此方法有不同的重载形式。
15public static void memorybarrier()按如下方式同步内存存取:执行当前线程的处理器在对指令重新排序时,不能采用先执行 memorybarrier 调用之后的内存存取,再执行 memorybarrier 调用之前的内存存取的方式。
16public static void resetabort()取消为当前线程请求的 abort。
17public static void setdata( localdatastoreslot slot, object data ) 在当前正在运行的线程上为此线程的当前域在指定槽中设置数据。为了获得更好的性能,请改用以 threadstaticattribute 属性标记的字段。
18public void start()开始一个线程。
19public static void sleep( int millisecondstimeout ) 让线程暂停一段时间。
20public static void spinwait( int iterations ) 导致线程等待由 iterations 参数定义的时间量。
21public static byte volatileread( ref byte address ) public static double volatileread( ref double address ) public static int volatileread( ref int address ) public static object volatileread( ref object address ) 读取字段值。无论处理器的数目或处理器缓存的状态如何,该值都是由计算机的任何处理器写入的最新值。此方法有不同的重载形式。这里只给出了一些形式。
22public static void volatilewrite( ref byte address, byte value ) public static void volatilewrite( ref double address, double value ) public static void volatilewrite( ref int address, int value ) public static void volatilewrite( ref object address, object value ) 立即向字段写入一个值,以使该值对计算机中的所有处理器都可见。此方法有不同的重载形式。这里只给出了一些形式。
23public static bool yield()导致调用线程执行准备好在当前处理器上运行的另一个线程。由操作系统选择要执行的线程。

 

4. 创建线程

线程是通过扩展 thread 类创建的。扩展的 thread 类调用 start() 方法来开始子线程的执行。

下面的程序演示了这个概念:

using system;
using system.threading;

namespace multithreadingapplication
{
    class threadcreationprogram
    {
        public static void calltochildthread()
        {
            console.writeline("child thread starts");
        }
        
        static void main(string[] args)
        {
            threadstart childref = new threadstart(calltochildthread);
            console.writeline("in main: creating the child thread");
            thread childthread = new thread(childref);
            childthread.start();
            console.readkey();
        }
    }
}

当上面的代码被编译和执行时,它会产生下列结果:

in main: creating the child thread
child thread starts

 

5. 管理线程

thread 类提供了各种管理线程的方法。

下面的范例演示了 sleep() 方法的使用,用于在一个特定的时间暂停线程。

using system;
using system.threading;

namespace multithreadingapplication
{
    class threadcreationprogram
    {
        public static void calltochildthread()
        {
            console.writeline("child thread starts");
            // 线程暂停 5000 毫秒
            int sleepfor = 5000; 
            console.writeline("child thread paused for {0} seconds", 
                              sleepfor / 1000);
            thread.sleep(sleepfor);
            console.writeline("child thread resumes");
        }
        
        static void main(string[] args)
        {
            threadstart childref = new threadstart(calltochildthread);
            console.writeline("in main: creating the child thread");
            thread childthread = new thread(childref);
            childthread.start();
            console.readkey();
        }
    }
}

当上面的代码被编译和执行时,它会产生下列结果:

in main: creating the child thread
child thread starts
child thread paused for 5 seconds
child thread resumes

 

5. 销毁线程

abort() 方法用于销毁线程。

通过抛出 threadabortexception 在运行时中止线程。这个异常不能被捕获,如果有 finally 块,控制会被送至 finally 块。

下面的程序说明了这点:

using system;
using system.threading;

namespace multithreadingapplication
{
    class threadcreationprogram
    {
        public static void calltochildthread()
        {
            try
            {

                console.writeline("child thread starts");
                // 计数到 10
                for (int counter = 0; counter <= 10; counter++)
                {
                    thread.sleep(500);
                    console.writeline(counter);
                }
                console.writeline("child thread completed");

            }
            catch (threadabortexception e)
            {
                console.writeline("thread abort exception");
            }
            finally
            {
                console.writeline("couldn't catch the thread exception");
            }

        }
        
        static void main(string[] args)
        {
            threadstart childref = new threadstart(calltochildthread);
            console.writeline("in main: creating the child thread");
            thread childthread = new thread(childref);
            childthread.start();
            // 停止主线程一段时间
            thread.sleep(2000);
            // 现在中止子线程
            console.writeline("in main: aborting the child thread");
            childthread.abort();
            console.readkey();
        }
    }
}

当上面的代码被编译和执行时,它会产生下列结果:

in main: creating the child thread
child thread starts
0
1
2
in main: aborting the child thread
thread abort exception
couldn't catch the thread exception 

下一节:c# 动态数组 arraylist

c# 教程

相关文章