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
广告