本文探讨了 C# 中 Parallel.ForEach
和 Task
系列(特别是 Task.WhenAll
、Task.Run
等)之间的主要区别。两者都有助于并发或并行代码执行,但它们的应用程序、行为和任务处理有很大不同。
并行.ForEach:
Parallel.ForEach
是 System.Threading.Tasks
命名空间的成员,支持对集合进行并行迭代。它自动在线程池中的可用线程之间分配工作负载,对于 CPU 密集型操作来说非常高效。
主要特点:
示例:
<code class="language-csharp">using System; using System.Threading.Tasks; class Program { static void Main(string[] args) { var items = new[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; Parallel.ForEach(items, item => { // Simulate CPU-intensive task (e.g., complex calculation) Console.WriteLine($"Processing item: {item} on thread {Task.CurrentId}"); }); Console.WriteLine("All items processed."); } }</code>
任务(Task.Run、Task.WhenAll):
Task.Run
和 Task.WhenAll
提供对异步和并行执行的精细控制。虽然 Task.Run
可以卸载 CPU 密集型工作,但它经常与 I/O 密集型任务的异步代码配合使用。
主要特点:
Task.WhenAll
、Task.WhenAny
)。Task.Run
在需要异步行为的场景中表现出色。示例:
<code class="language-csharp">using System; using System.Threading.Tasks; class Program { static void Main(string[] args) { var items = new[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; Parallel.ForEach(items, item => { // Simulate CPU-intensive task (e.g., complex calculation) Console.WriteLine($"Processing item: {item} on thread {Task.CurrentId}"); }); Console.WriteLine("All items processed."); } }</code>
Feature | Parallel.ForEach | Task.Run / Task.WhenAll |
---|---|---|
Primary Use Case | Parallel iteration for CPU-bound tasks. | Asynchronous and parallel execution (CPU/I/O). |
Thread Control | Less control; uses the thread pool. | Full control over task creation and execution. |
Execution Type | Synchronous (blocking). | Asynchronous (non-blocking unless awaited). |
Task Type | CPU-bound tasks (parallel for loop). | General-purpose tasks (CPU-bound or I/O-bound). |
Parallelism | Parallelism | Parallel or asynchronous. |
Error Handling | Exceptions thrown per iteration. |
Task.WhenAll aggregates exceptions. |
Performance | Automatic performance tuning. | Manual task distribution management. |
Parallel.ForEach
>:Task.Run
>
Task.WhenAll
您将CPU结合的任务分为独立的工作单位。
需要对任务管理,取消或同步的颗粒状控制。Parallel.ForEach
>
Task.Run
需要结合并行性和异步。Task.WhenAll
>
以上是任务和并行的详细内容。更多信息请关注PHP中文网其他相关文章!