欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

.net多线程,线程异步,线程同步,并发问题---1---ShinePans

程序员文章站 2022-10-25 12:27:49
申请线程,输出线程状态: using system; using system.collections.generic; using system.linq; using s...

申请线程,输出线程状态:


using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.threading;
using system.threading.tasks;

namespace 主线程1
{
    class program
    {
        static void main(string[] args)
        {
            console.writeline("当前的线程状况:");
            //声明线程变量并赋值为当前线程
            thread primarythread = thread.currentthread;
            //赋值线程的名称
            primarythread.name = "主线程";
            //显示进程的相关信息
            console.writeline("线程的名字:{0}", primarythread.name);
            console.writeline("线程启动状况:{0}", primarythread.isalive);
            console.writeline("线程优先级:{0}", primarythread.priority);
            console.writeline("线程状态:{0}", primarythread.threadstate);
            console.readline();
        }
    }
}



.net多线程,线程异步,线程同步,并发问题---1---ShinePans.net多线程,线程异步,线程同步,并发问题---1---ShinePans