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

更新于:22-6-2020

685 次浏览

开启你的职业生涯

通过完成课程获取认证

开始学习
广告