gpt4 book ai didi

C#、IAsyncResult 和线程池

转载 作者:太空狗 更新时间:2023-10-29 22:35:30 26 4
gpt4 key购买 nike

我使用 Action<object>.BeginInvoke()方法,这是否使用线程池?

我有以下 C# 代码:

    List<FileHash> hashList1 = hashList.Where((x, ind) => ind % 2 == 0).ToList();
List<FileHash> hashList2 = hashList.Where((x, ind) => ind % 2 == 1).ToList();

Action<object> oddWork = CalcHash;
Action<object> evenWork = CalcHash;

IAsyncResult evenHandle = evenWork.BeginInvoke(hashList1, null, null);
IAsyncResult oddHandle = oddWork.BeginInvoke(hashList2, null, null);

evenWork.EndInvoke(evenHandle);
oddWork.EndInvoke(oddHandle);

线程池是否在后台使用?还是系统创建普通线程?

最佳答案

是的,这项工作将发生在线程池中。 MSDN 中的这个页面深入介绍了 BeginInvoke 的工作原理:

http://msdn.microsoft.com/en-us/library/2e08f6yc.aspx

关于C#、IAsyncResult 和线程池,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/442991/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com