码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2017-04-12 14:57:09      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:names   ogr   read   reading   thread   http   pac   threading   state   

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


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

标签:names   ogr   read   reading   thread   http   pac   threading   state   

原文地址:http://www.cnblogs.com/blfbuaa/p/6699156.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!