With real examples and their use, can someone please help me understand:
- When do we need Func delegate?
- When do we need Action delegate?
- When do we need Predicates delegate?
|
|
|
The difference between
or filtering:
or key selection:
|
|||||||||||||||||||
|
|
Func - When you want a delegate for a function that may or may not take parameters and returns a value. The most common example would be Select from LINQ:
Action - When you want a delegate for a function that may or may not take parameters and does not return a value. I use these often for anonymous event handlers:
Predicate - When you want a specialized version of a Func that takes evaluates a value against a set of criteria and returns a boolean result (true for a match, false otherwise).
I just double checked and it turns out that LINQ doesn't use Predicates. Not sure why they made that decision...but theoretically it is still a situation where a Predicate would fit. |
|||||
|
|
Action is a delegate (pointer) to a method, that takes zero, one or more input parameters, but does not return anything. Func is a delegate (pointer) to a method, that takes zero, one or more input parameters, and returns a value (or refence). Predicate is a special kind of Func often used for comparisons. Though widely used with Linq, Action and Func are concepts logically independent of Linq. C++ already contained the basic concept in form of typed function pointers. Here is a small example for Action and Func without using Linq:
|
|||
|
|
|
Action is a delegate (pointer) to a method, that takes zero or one input parameters, but does not return anything. Func is a delegate (pointer) to a method, that takes zero, one or more input parameters, and returns a value (or refence). Predicate is a special kind of Func often used for comparisons. Though widely used with Linq, Action and Func are concepts logically independent of Linq. C++ already contained the basic concept in form of typed function pointers. class Program { static void Main(string[] args) {
|
|||
|
|
|
||||
|
|