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

线程的几种写法

时间:2020-05-01 01:28:44      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:写法   new   method   thread   start   匿名   new t   lam   ons   

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;

线程的几种写法

标签:写法   new   method   thread   start   匿名   new t   lam   ons   

原文地址:https://www.cnblogs.com/boentouch/p/12811746.html

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