Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

With real examples and their use, can someone please help me understand:

  1. When do we need Func delegate?
  2. When do we need Action delegate?
  3. When do we need Predicates delegate?
share|improve this question

5 Answers

up vote 172 down vote accepted

The difference between Func and Action is simply whether you want the delegate to return a value (use Func) or doesn't (use Action).

Func is probably most commonly used in LINQ - for example in projections:

 list.Select(x => x.SomeProperty)

or filtering:

 list.Where(x => x.SomeValue == someOtherValue)

or key selection:

 list.Join(otherList, x => x.FirstKey, y => y.SecondKey, ...)

Action is more commonly used for things like List<T>.ForEach: execute the given action for each item in the list. I use this less often than Func, although I do sometimes use the parameterless version for things like Control.BeginInvoke and Dispatcher.BeginInvoke.

Predicate is just a special cased Func<T, bool> really, introduced before all of the Func and most of the Action delegates came along. I suspect that if we'd already had Func and Action in their various guises, Predicate wouldn't have been introduced... although it does impart a certain meaning to the use of the delegate, whereas Func and Action are used for widely disparate purposes.

Predicate is mostly used in List<T> for methods like FindAll and RemoveAll.

share|improve this answer
10  
I rather like seeing Predicate in a function signature. It illustrates that the passed method makes a decision rather than just returns a success code or a different sort of bool. – Ron Warholic Nov 30 '10 at 19:15
1  
Is there any design guideline on whether to prefer Predicate<T> or Func<T,bool>? I like the expressiveness of Predicate, but I've seen recommendations for Func too. – CodesInChaos Nov 30 '10 at 19:16
2  
@Ron: Yes, that's pretty much what my penultimate paragraph was about. – Jon Skeet Nov 30 '10 at 19:16
2  
@CodeInChaos: Not that I've seen. LINQ uses Func throughout, but that's probably for consistency given that many method accepting a Func<T,bool> as a predicate also have an overload taking a Func<T,int,bool> for an indexed predicate. – Jon Skeet Nov 30 '10 at 19:17
i kind'a like how simple you have explained it. func - returns action - performs (method) – Juvil Jan 10 at 5:09

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:

var result = someCollection.Select( x => new { x.Name, x.Address });

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:

button1.Click += (sender, e) => { /* Do Some Work */ }

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). Again, these are used in LINQ quite frequently for things like Where:

var filteredResults = 
    someCollection.Where(x => x.someCriteriaHolder == someCriteria);

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.

share|improve this answer
1  
I know this is old, but Predicate was not used by LINQ because it predates the Func and Action that we know today, and the latter two can be used to achieve the exact same result in a much better way. – gparent Jan 6 '12 at 22:27

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:

class Program
{
    static void Main(string[] args)
    {
        Action<int> myAction = new Action<int>(DoSomething);
        myAction.Invoke(123);           // Prints out "123"

        Func<int, double> myFunc = new Func<int, double>(CalcualteSomething);
        Console.WriteLine(myFunc(5));   // Prints out "2.5"
    }

    static void DoSomething(int i)
    {
        Console.WriteLine(i);
    }

    static double CalcualteSomething(int i)
    {
        return (double)i/2;
    }
}
share|improve this answer

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) {

        //Action
        //is a delegate (pointer) to a method, that takes zero or one input parameters, but does not return anything.

        Action a = new Action(DoSomething);
        a.Invoke();

        Action<int> aa = new Action<int>(DoSomething1);
        aa.Invoke(1000);

       // Action<int> aaa = new Action<int>(DoSomething2);   // this is not possible becase action can have zero or one parameters only.
        //aa.Invoke(1, 2);


        //Func is delegate to a methood, tat take zero or more argument and return values.
        Func<int> b = new Func<int>(DoSomethingNew);
        var res1 = b.Invoke();
        Console.WriteLine(res1);

        Func<int, int> bb = new Func<int, int>(DoSomethingNew);
        var res2 = bb.Invoke(2);
        Console.WriteLine(res2);

        Func<int, double, string> bbb = new Func<int, double, string>(DoSomethingNew);
        var res3 = bbb.Invoke(2, 3);
        Console.WriteLine(res2);


        Func<int, double, int, string> bbbb = new Func<int, double, int, string>(DoSomethingNew);
        var res4 = bbbb.Invoke(1, 1, 1);
        Console.WriteLine(res4);
        Console.ReadLine();

    }


    // *****************************************Action************************************************
    static void DoSomething()
    {
        Console.WriteLine("inside do something methood");
    }

    static void DoSomething1(int i)
    {
        Console.WriteLine("input {0} inside do something methood", i);
    }

    static void DoSomething2(int i, int j)
    {
        Console.WriteLine("input {0} {1} inside do something methood", i, j);
    }

    // *****************************************Func************************************************
    static int DoSomethingNew()
    {
        Console.WriteLine("inside do something new methood");
        return 1;
    }

    static int DoSomethingNew(int i)
    {
        Console.WriteLine("input {0} inside do something methood", i);
        return 2;
    }

    static string DoSomethingNew(int i, double j)
    {
        Console.WriteLine("input {0} {1} inside do something methood", i,j);
        return "3";
    }

    static string DoSomethingNew(int i, double j, int k)
    {
        Console.WriteLine("input {0} {1} {2} inside do something with three methood", i, j,k);
        return "3";
    }
}
share|improve this answer
        public void Test_Func_Action_Predicate()
        {
            Func<int, String, String> myFunc = new Func<int, string, string>((i, s) => "ID: " + i + " Name: " + s);
            MessageBox.Show(myFunc(5, "Saad"));
            Action<String, String> myaction = new Action<string, string>(ShowName);
            myaction.Invoke("sayed", "Saad");
            Predicate<String> mypredicate = new Predicate<string>(IsAuthorized);
            MessageBox.Show("Is a manager " + mypredicate("User"));
        }
        private void ShowName(string fname, string lname)
        {
            MessageBox.Show(lname + ", " + fname);
        }
        public bool IsAuthorized(string s)
        {
            return s == "Manager" ? true : false;
        }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.