C#开启线程的四种⽅式⽰例详解⼀、异步委托开启线程
public static void Main(string[] args){
Action<int,int> a=add;
a.BeginInvoke(3,4,null,null);//前两个是add⽅法的参数,后两个可以为空
Console.WriteLine("main()");
Console.ReadKey();
}
static void add(int a,int b){
Console.WriteLine(a+b);
}
运⾏结果:
writeline函数
如果不是开启线程,像平常⼀样调⽤的话,应该先输出7,再输出main()
⼆、通过thread类开启线程
using System;
using System.Threading;
public static void Main(string[] args){
Thread t=new Thread(DownLoadFile_My);//创建了线程还未开启
t.Start("abc/def/**.mp4");//⽤来给函数传递参数,开启线程
Console.WriteLine("main()");
Console.ReadKey();
}
//thread开启线程要求:该⽅法参数只能有⼀个,且是object类型
static void DownLoadFile_My(object filePath){
Console.WriteLine("开始下载:"+filePath);
Thread.Sleep(2000);
Console.WriteLine("下载完成!");
}
运⾏结果:
三、通过线程池开启线程
public static void Main(string[] args){
ThreadPool.QueueUserWorkItem(DownLoadFile_My);
ThreadPool.QueueUserWorkItem(DownLoadFile_My);
ThreadPool.QueueUserWorkItem(DownLoadFile_My);
ThreadPool.QueueUserWorkItem(DownLoadFile_My);
ThreadPool.QueueUserWorkItem(DownLoadFile_My);
ThreadPool.QueueUserWorkItem(DownLoadFile_My);
ThreadPool.QueueUserWorkItem(DownLoadFile_My);
ThreadPool.QueueUserWorkItem(DownLoadFile_My);
ThreadPool.QueueUserWorkItem(DownLoadFile_My);
Console.WriteLine("main()");
Console.ReadKey();
}
static void DownLoadFile_My(object state){
Console.WriteLine("开始下载... 线程ID:"+Thread.CurrentThread.ManagedThreadId);
Thread.Sleep(2000);
Console.WriteLine("下载完成!");
}
运⾏结果:
4、通过任务开启线程
1>Task开启线程
using System;
using System.Threading;
using System.Threading.Tasks;
public static void Main(string[] args){
Task t=new Task(DownLoadFile_My);
t.Start();
Console.WriteLine("main()");
Console.ReadKey();
}
static void DownLoadFile_My( ){
Console.WriteLine("开始下载... 线程ID:"+Thread.CurrentThread.ManagedThreadId);
Thread.Sleep(2000);
Console.WriteLine("下载完成!");
}
运⾏结果:
2>TaskFactory开启线程
public static void Main(string[] args){
TaskFactory tf=new TaskFactory();
tf.StartNew(DownLoadFile_My);
Console.WriteLine("main()");
Console.ReadKey();
}
static void DownLoadFile_My( ){
Console.WriteLine("开始下载... 线程ID:"+Thread.CurrentThread.ManagedThreadId);
Thread.Sleep(2000);
Console.WriteLine("下载完成!");
}
运⾏结果:
总结
以上就是这篇⽂章的全部内容了,希望本⽂的内容对⼤家的学习或者⼯作具有⼀定的参考学习价值,谢谢⼤家对的⽀持。如果你想了解更多相关内容请查看下⾯相关链接
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论