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

C#多线程解决程序卡顿问题

时间:2019-07-22 13:42:12      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:vat   for   thread   --   mat   wait   static   new t   void   

描述:

在 C# 中,System.Threading.Thread 类用于线程的工作。它允许创建并访问多线程应用程序中的单个线程。进程中第一个被执行的线程称为主线程。

案例:

static void Main(string[] args)
{
int num = 100;
for (int i = 0; i < num; i++)
{
//无参的多线程
noParmaThread();

}
}
private static void StartThread()

{
Console.WriteLine("------开始了新线程------");
Thread.Sleep(2000);//wait
Console.WriteLine("------线程结束------");
}

/// <summary>
///不需要传递参数
/// </summary>
private static void noParmaThread()
{
ThreadStart threadStart = new ThreadStart(StartThread);
var thread = new Thread(threadStart);
thread.Start();//开始线程
}

 

C#多线程解决程序卡顿问题

标签:vat   for   thread   --   mat   wait   static   new t   void   

原文地址:https://www.cnblogs.com/lihaishu/p/11224980.html

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