C#中ParameterizedThreadStart和ThreadStart区别
摘要:
不需要传递参数,也不需要返回参数 我们知道启动一个线程最直观的办法是使用Thread类,具体步骤如下:ThreadStart threadStart=new ThreadStart(Calculate);Thread thread=new Thread(threadStart); thread.Start();public void Calculate() { double Diameter=... 阅读全文
posted @ 2010-07-26 13:39 Bright Leopold 阅读(9057) 评论(1) 推荐(0)
浙公网安备 33010602011771号