一、异步委托开启线程
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);
}
|
运行结果:
如果不是开启线程,像平常一样调用的话,应该先输出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( "下载完成!" );
}
|
运行结果:
三、通过线程池开启线程
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( "下载完成!" );
}
|
运行结果:
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( "下载完成!" );
}
|
运行结果:
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( "下载完成!" );
}
|
运行结果:
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对服务器之家的支持。如果你想了解更多相关内容请查看下面相关链接
原文链接:https://blog.csdn.net/hyy_sui_yuan/article/details/81263281?utm_source=blogxgwz2