黑马程序员技术交流社区

标题: threadstart 和 ParameterizedThreadStart 区别 [打印本页]

作者: 张旭    时间: 2011-12-12 23:17
标题: threadstart 和 ParameterizedThreadStart 区别
threadstart 和 ParameterizedThreadStart 区别
作者: 乔克    时间: 2011-12-13 08:35
本帖最后由 乔克 于 2011-12-13 08:36 编辑

1.threadstart :不需要传递参数,也不需要返回参数。
  1. ThreadStart threadStart=new ThreadStart(Calculate);
  2. Thread thread=new Thread(threadStart);
  3. thread.Start();
  4. public void Calculate()

  5.    {
  6.  double Diameter=0.5;
  7.  Console.Write("The Area Of Circle with a Diameter of {0} is {1}"Diameter,Diameter*Math.PI);
  8. }
复制代码
2.ParameterizedThreadStart需要传递单个参数
  1. ParameterizedThreadStart threadStart=new ParameterizedThreadStart(Calculate)
  2. Thread thread=new Thread() ;

  3. thread.Start(0.9);

  4. public void Calculate(object arg)

  5. {
  6. double Diameter=double(arg);
  7. Console.Write("The Area Of Circle with a Diameter of {0} is {1}"Diameter,Diameter*Math.PI);
  8. }
复制代码
Calculate方法有一个为object类型的参数,虽然只有一个参数,而且还是object类型的,使用的时候尚需要类型转换,但是好在可以有参数了,并且通过把多个参数组合到一个类中,然后把这个类的实例作为参数传递,就可以实现多个参数传递.




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2