一个.net控制台应用,怎么 开启了4个线程
intthreadCount=Process.GetCurrentProcess().Threads.Count;foreach(ProcessThreadthreadi...
int threadCount = Process.GetCurrentProcess().Threads.Count;
foreach(ProcessThread thread in Process.GetCurrentProcess().Threads)
{
Console.WriteLine("Thread Id is:" + thread.Id + ", thread priority is:" + thread.BasePriority + ", thread state is:" + thread.ThreadState);
}
除了一个主线程之外,另外三个是做什么使用的?而且有一个基本优先级是10,其它3个(包含主线程在内)优先级都是8. 展开
foreach(ProcessThread thread in Process.GetCurrentProcess().Threads)
{
Console.WriteLine("Thread Id is:" + thread.Id + ", thread priority is:" + thread.BasePriority + ", thread state is:" + thread.ThreadState);
}
除了一个主线程之外,另外三个是做什么使用的?而且有一个基本优先级是10,其它3个(包含主线程在内)优先级都是8. 展开
1个回答
展开全部
一般来说 .NET 程序运行至少会存在 3 个线程:
主线程,负责启动 CLR 并运行 Main 方法。
Finalizer 线程,负责 GC。
调试器帮助线程,负责为调试器提供帮助。
而 CLR 还会视情况启动更多的线程,可能包括:
并发的 GC 线程:GC 会根据情况启动更多的线程并发进行垃圾回收。
AppDomain 卸载线程:CLR 可能会启动一个工作线程来卸载应用程序域。
ThreadPool 线程:ThreadPool 会根据情况创建线程。
更多追问追答
追问
这个优先级为10的线程是什么线程呢? 它为什么优先级高呢?
追答
就是你的主线程了。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询