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

问题描述

限时删除!!

var tasks = Items.Select(i=> Task.Factory.StartNew(()=> i.DoSomething()));
Task.WaitAll(tasks.ToArray());



在上面的代码中,当DoSomething太短而在WaitAll被调用之前结束时会发生什么。 ( Items 关闭了具有不同实现的不同子类)


In the above code, What happens when DoSomething is too short that it ends before WaitAll is called. (Items are off different sub-classes with different implementations)

推荐答案


这篇关于Task.WaitAll和太短的任务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-08 06:00