本文介绍了线程和的ThreadStart的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

下面两个行的工作一样。但没有任何隐藏的区别吗?哪一个应该是preferred?

Both of the following lines work same. but is there any hidden difference? and which one should be preferred?

Thread t1 = new Thread(aMethod);

Thread t2 = new Thread(new ThreadStart(aMethod));

感谢。

推荐答案

没有区别。这两条线都是平等的。

There is no difference. Both lines are equal.

这篇关于线程和的ThreadStart的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 14:02