本帖最后由 乔克 于 2011-12-13 08:36 编辑
1.threadstart :不需要传递参数,也不需要返回参数。- ThreadStart threadStart=new ThreadStart(Calculate);
- Thread thread=new Thread(threadStart);
- thread.Start();
- public void Calculate()
- {
- double Diameter=0.5;
- Console.Write("The Area Of Circle with a Diameter of {0} is {1}"Diameter,Diameter*Math.PI);
- }
复制代码 2.ParameterizedThreadStart需要传递单个参数- ParameterizedThreadStart threadStart=new ParameterizedThreadStart(Calculate)
- Thread thread=new Thread() ;
- thread.Start(0.9);
- public void Calculate(object arg)
- {
- double Diameter=double(arg);
- Console.Write("The Area Of Circle with a Diameter of {0} is {1}"Diameter,Diameter*Math.PI);
- }
复制代码 Calculate方法有一个为object类型的参数,虽然只有一个参数,而且还是object类型的,使用的时候尚需要类型转换,但是好在可以有参数了,并且通过把多个参数组合到一个类中,然后把这个类的实例作为参数传递,就可以实现多个参数传递. |