Espressioni lambda in PLINQ e TPL
La libreria Task Parallel Library (TPL) contiene molti metodi che accettano come parametri di input una delle famiglie di delegati System.Func<TResult> o System.Action. Questi delegati vengono utilizzati per passare la logica di programma personalizzata al ciclo, all'attività o alla query parallela. Negli esempi di codice per TPL e PLINQ si utilizzano espressioni lambda per creare istanze di tali delegati come blocchi di codice inline. In questo argomento viene fornita una breve introduzione ai delegati Func e Action e viene illustrato come utilizzare le espressioni lambda in TPL e PLINQ.
Nota Per ulteriori informazioni sui delegati in generale, vedere Delegati (Guida per programmatori C#) e Delegati (Visual Basic). Per ulteriori informazioni sulle espressioni lambda in C# e Visual Basic, vedere Espressioni lambda (Guida per programmatori C#) e Lambda Expressions.
Delegato Func
Un delegato Func incapsula un metodo che restituisce un valore. In una firma Func, l'ultimo parametro di tipo o quello più a destra specifica sempre il tipo restituito. Una causa comune degli errori del compilatore è dovuta al tentativo di passare due parametri di input a System.Func<T, TResult>, poiché in effetti questo tipo accetta un solo parametro di input. Nella libreria di classi .NET Framework sono definite 17 versioni di Func: System.Func<TResult>, System.Func<T, TResult>, System.Func<T1, T2, TResult> e così via fino a System.Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, TResult>.
Delegato Action
Un delegato System.Action incapsula un metodo (Sub in Visual Basic) che non restituisce valori oppure restituisce void. In una firma di tipo Action i parametri di tipo rappresentano solo parametri di input. Analogamente a Func, nella libreria di classi .NET Framework sono definite 17 versioni di Action, da una versione priva di parametri di tipo fino a una versione avente 16 parametri di tipo.
Esempio
Nell'esempio seguente per il metodo Parallel.ForEach<TSource, TLocal>(IEnumerable<TSource>, Func<TLocal>, Func<TSource, ParallelLoopState, TLocal, TLocal>, Action<TLocal>) viene illustrato come esprimere i delegati Func e Action utilizzando espressioni lambda.
Imports System.Threading
Imports System.Threading.Tasks
Module ForEachDemo
' Demonstrated features:
' Parallel.ForEach()
' Thread-local state
' Expected results:
' This example sums up the elements of an int[] in parallel.
' Each thread maintains a local sum. When a thread is initialized, that local sum is set to 0.
' On every iteration the current element is added to the local sum.
' When a thread is done, it safely adds its local sum to the global sum.
' After the loop is complete, the global sum is printed out.
' Documentation:
' https://msdn.microsoft.com/en-us/library/dd990270(VS.100).aspx
Private Sub ForEachDemo()
' The sum of these elements is 40.
Dim input As Integer() = {4, 1, 6, 2, 9, 5, _
10, 3}
Dim sum As Integer = 0
Try
' source collection
Parallel.ForEach(input,
Function()
' thread local initializer
Return 0
End Function,
Function(n, loopState, localSum)
' body
localSum += n
Console.WriteLine("Thread={0}, n={1}, localSum={2}", Thread.CurrentThread.ManagedThreadId, n, localSum)
Return localSum
End Function,
Sub(localSum)
' thread local aggregator
Interlocked.Add(sum, localSum)
End Sub)
Console.WriteLine(vbLf & "Sum={0}", sum)
Catch e As AggregateException
' No exception is expected in this example, but if one is still thrown from a task,
' it will be wrapped in AggregateException and propagated to the main thread.
Console.WriteLine("Parallel.ForEach has thrown an exception. THIS WAS NOT EXPECTED." & vbLf & "{0}", e)
End Try
End Sub
End Module
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
class ForEachWithThreadLocal
{
// Demonstrated features:
// Parallel.ForEach()
// Thread-local state
// Expected results:
// This example sums up the elements of an int[] in parallel.
// Each thread maintains a local sum. When a thread is initialized, that local sum is set to 0.
// On every iteration the current element is added to the local sum.
// When a thread is done, it safely adds its local sum to the global sum.
// After the loop is complete, the global sum is printed out.
// Documentation:
// https://msdn.microsoft.com/en-us/library/dd990270(VS.100).aspx
static void Main()
{
// The sum of these elements is 40.
int[] input = { 4, 1, 6, 2, 9, 5, 10, 3 };
int sum = 0;
try
{
Parallel.ForEach(
input, // source collection
() => 0, // thread local initializer
(n, loopState, localSum) => // body
{
localSum += n;
Console.WriteLine("Thread={0}, n={1}, localSum={2}", Thread.CurrentThread.ManagedThreadId, n, localSum);
return localSum;
},
(localSum) => Interlocked.Add(ref sum, localSum) // thread local aggregator
);
Console.WriteLine("\nSum={0}", sum);
}
// No exception is expected in this example, but if one is still thrown from a task,
// it will be wrapped in AggregateException and propagated to the main thread.
catch (AggregateException e)
{
Console.WriteLine("Parallel.ForEach has thrown an exception. THIS WAS NOT EXPECTED.\n{0}", e);
}
}
}