服务器之家

服务器之家 > 正文

C#开启线程的四种方式示例详解

时间:2022-03-03 13:48     来源/作者:本人菜鸟一枚

一、异步委托开启线程

?
1
2
3
4
5
6
7
8
9
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);
}

运行结果:

C#开启线程的四种方式示例详解

如果不是开启线程,像平常一样调用的话,应该先输出7,再输出main()

二、通过thread类开启线程

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
   using system;
       using system.threading;
        public static void main(string[] args){
 thread t=new thread(downloadfile_my);//创建了线程还未开启
 t.start("http://abc/def/**.mp4");//用来给函数传递参数,开启线程
 console.writeline("main()");
 console.readkey();
}
//thread开启线程要求:该方法参数只能有一个,且是object类型
static void downloadfile_my(object filepath){
 console.writeline("开始下载:"+filepath);
 thread.sleep(2000);
 console.writeline("下载完成!");
}

运行结果:

C#开启线程的四种方式示例详解

三、通过线程池开启线程

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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("下载完成!");
}

运行结果:

C#开启线程的四种方式示例详解

4、通过任务开启线程

1>task开启线程

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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("下载完成!");
 }

运行结果:

C#开启线程的四种方式示例详解

2>taskfactory开启线程

?
1
2
3
4
5
6
7
8
9
10
11
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("下载完成!");
}

运行结果:

C#开启线程的四种方式示例详解

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对服务器之家的支持。如果你想了解更多相关内容请查看下面相关链接

原文链接:https://blog.csdn.net/hyy_sui_yuan/article/details/81263281?utm_source=blogxgwz2

标签:

相关文章

热门资讯

2022年最旺的微信头像大全 微信头像2022年最新版图片
2022年最旺的微信头像大全 微信头像2022年最新版图片 2022-01-10
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
返回顶部