C#中的主线程与子线程

主线程

在进程中执行的第一个线程称为主线程。当C#程序开始执行时,将自动创建主线程。

子线程

使用Thread类创建的线程称为主线程的子线程。

这是显示如何创建主线程和子线程的示例-

示例

using System;

using System.Threading;

namespace Demo {

   class Program {

      static void Main(string[] args) {

         Thread th = Thread.CurrentThread;

         th.Name = "MainThread";

         Console.WriteLine("This is {0}", th.Name);

         Console.ReadKey();

      }

   }

}

输出结果

This is MainThread

以上是 C#中的主线程与子线程 的全部内容, 来源链接: utcz.com/z/330792.html

回到顶部