To jest C # 7.0, który obsługuje funkcje lokalne ...
public static IEnumerable<TSource> DistinctBy<TSource, TKey>(
this IEnumerable<TSource> source,
Func<TSource, TKey> keySelector, IEqualityComparer<TKey> comparer)
{
if (source == null) throw new
ArgumentNullException(nameof(source));
if (keySelector == null) throw
new ArgumentNullException(nameof(keySelector));
// This is basically executing _LocalFunction()
return _LocalFunction();
// This is a new inline method,
// return within this is only within scope of
// this method
IEnumerable<TSource> _LocalFunction()
{
var knownKeys = new HashSet<TKey>(comparer);
foreach (var element in source)
{
if (knownKeys.Add(keySelector(element)))
yield return element;
}
}
}
Bieżący C # z Func<T>
public static IEnumerable<TSource> DistinctBy<TSource, TKey>(
this IEnumerable<TSource> source,
Func<TSource, TKey> keySelector, IEqualityComparer<TKey> comparer)
{
if (source == null) throw new
ArgumentNullException(nameof(source));
if (keySelector == null) throw
new ArgumentNullException(nameof(keySelector));
Func<IEnumerable<TSource>> func = () => {
var knownKeys = new HashSet<TKey>(comparer);
foreach (var element in source)
{
if (knownKeys.Add(keySelector(element)))
yield return element;
}
};
// This is basically executing func
return func();
}
Sztuczka polega na tym, że _ () jest deklarowane po jej użyciu, co jest całkowicie w porządku.
Praktyczne wykorzystanie funkcji lokalnych
Powyższy przykład to tylko demonstracja, w jaki sposób można użyć metody inline, ale najprawdopodobniej jeśli zamierzasz wywołać metodę tylko raz, to nie będzie to przydatne.
Ale w powyższym przykładzie, jak wspomniano w komentarzach Phoshi i Luaan , istnieje zaleta korzystania z funkcji lokalnej. Ponieważ funkcja z yield return nie zostanie wykonana, chyba że ktoś ją iteruje, w tym przypadku zostanie wykonana metoda poza funkcją lokalną, a walidacja parametrów zostanie wykonana, nawet jeśli nikt nie będzie iterował wartości.
Wiele razy powtarzaliśmy kod w metodzie, spójrzmy na ten przykład.
public void ValidateCustomer(Customer customer){
if( string.IsNullOrEmpty( customer.FirstName )){
string error = "Firstname cannot be empty";
customer.ValidationErrors.Add(error);
ErrorLogger.Log(error);
throw new ValidationError(error);
}
if( string.IsNullOrEmpty( customer.LastName )){
string error = "Lastname cannot be empty";
customer.ValidationErrors.Add(error);
ErrorLogger.Log(error);
throw new ValidationError(error);
}
... on and on...
}
Mógłbym to zoptymalizować za pomocą ...
public void ValidateCustomer(Customer customer){
void _validate(string value, string error){
if(!string.IsNullOrWhitespace(value)){
// i can easily reference customer here
customer.ValidationErrors.Add(error);
ErrorLogger.Log(error);
throw new ValidationError(error);
}
}
_validate(customer.FirstName, "Firstname cannot be empty");
_validate(customer.LastName, "Lastname cannot be empty");
... on and on...
}
return _(); IEnumerable<TSource> _()
:?