出自http://hi.baidu.com/ydalbj/blog/item/330b8d13f6959dd5f6039ec4.html

 

Thread

 

threadWithParam = new Thread(new ParameterizedThreadStart(new ThreadTest().ShowMsg));//threadWithParam.Start("this is a param.");

threadWithParam.Start(

 

thread.Start();

"44444");Thread thread=new Thread(new ThreadStart(new Class11().ShowMsg));

 

表示在 Thread 上执行的方法的委托方法,ThreadStart不能带参数,ParameterizedThreadStart是2.0中新增的,可以带参数(object类型的)

using System.Threading;

public void ShowMsg()
{
    MessageBox.Show("Message Info.");
}

Thread thread = new Thread(new ThreadStart(ShowMsg));
thread.Start();

//带参数

public void ShowMsg(object msg)
{
    MessageBox.Show(msg.ToString());
}

Thread threadWithParam = new Thread(new ParameterizedThreadStart(new ThreadTest().ShowMsg));
threadWithParam.Start("this is a param.");

相关文章:

  • 2022-12-23
  • 2022-01-27
  • 2021-06-09
  • 2021-06-14
猜你喜欢
  • 2021-08-14
  • 2022-12-23
  • 2022-03-05
  • 2021-12-29
相关资源
相似解决方案