线程的几种写法
Posted boentouch
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了线程的几种写法相关的知识,希望对你有一定的参考价值。
1、第一种写法
Thread thread = new Thread(MyMethod);
static void MyMethod()
{
console.write("我是不带参数的委托方法");
}
thread.start();
2、第二种写法,匿名委托:
Thread thread2= new Thread(delegate(){
console.write("我是匿名的委托方法");
});
thread2.start();
3、第三种写法 lamda表达式
Thread thread3 = new Thread(()=>{
console.write("传入空参,返回为空");
});
注:多线程一般放在后台运行,这样在主程序退出时,线程就结束了。
thread.IsBackground=true;
以上是关于线程的几种写法的主要内容,如果未能解决你的问题,请参考以下文章