I keep hearing a lot about functors in C++, can someone give me an overview as to what they are and in what cases they would be useful?
|
|
A functor is pretty much just a class which defines the operator(). That lets you create objects which "look like" a function:
There are a couple of nice things about functors. One is that unlike regular functions, they can contain state. The above example creates a function which adds 42 to whatever you give it. But that value 42 is not hardcoded, it was specified as a constructor argument when we created our functor instance. I could create another adder, which added 27, just by calling the constructor with a different value. This makes them nicely customizable. As the last lines show, you often pass functors as arguments to other functions such as std::transform or the other standard library algorithms. You could do the same with a regular function pointer except, as I said above, functors can be "customized" because they contain state, making them more flexible (If I wanted to use a function pointer, I'd have to write a function which added exactly 1 to its argument. The functor is general, and adds whatever you initialized it with), and they are also potentially more efficient. In the above example, the compiler knows exactly which function If I had passed a function pointer instead, the compiler couldn't immediately see which function it points to, so unless it performs some fairly complex global optimizations, it'd have to dereference the pointer at runtime, and then make the call. |
|||||||||||||||||
|
|
Little addition. You can use
and you can use boost::bind to add state to this functor
and most useful, with boost::bind and boost::function you can create functor from class method, actually this is a delegate:
You can create list or vector of functors
There is one problem with all this stuff, compiler error messages is not human readable :) |
||||
|
|
|
A Functor is a object which acts like a function. Basically, a class which defines operator().
The real advantage is that a functor can hold state.
|
|||||
|
|
Like others have mentioned, a functor is an object that acts like a function, i.e. it overloads the function call operator. Functors are commonly used in STL algorithms. They are useful because they can hold state before and between function calls, like a closure in functional languages. For example, you could define a
Then you could pass a
Another advantage of a functor over a pointer to a function is that the call can be inlined in more cases. If you passed a function pointer to |
|||||
|
|
|
Used instead of plain function: Pros:
Cons:
Used instead of function pointer: Pros:
Cons:
Used instead of polymorphism: Pros:
Cons:
|
|||
|
Here's an actual situation where I was forced to use a Functor to solve my problem: I have a set of functions (say, 20 of them), and they are all identical, except each calls a different specific function in 3 specific spots. This is incredible waste, and code duplication. Normally I would just pass in a function pointer, and just call that in the 3 spots. (So the code only needs to appear once, instead of twenty times.) But then I realized, in each case, the specific function required a completely different parameter profile! Sometimes 2 parameters, sometimes 5 parameters, etc. Another solution would be to have a base class, where the specific function is an overridden method in a derived class. But do I really want to build all of this INHERITANCE, just so I can pass a function pointer???? SOLUTION: So what I did was, I made a wrapper class (a "Functor") which is able to call any of the functions I needed called. I set it up in advance (with its parameters, etc) and then I pass it in instead of a function pointer. Now the called code can trigger the Functor, without knowing what is happening on the inside. It can even call it multiple times (I needed it to call 3 times.) That's it -- a practical example where a Functor turned out to be the obvious and easy solution, which allowed me to reduce code duplication from 20 functions to 1. |
|||
|
|
|
Except for used in callback, C++ functors can also help to provide a Matlab liking access style to a matrix class. There is a example. |
|||
|
|
|
See this article. Essentially, a functor is a wrapper around a function pointer. They are functions with a state.
|
||||
|
|
|
The Command Pattern suggests many problem/solution domains in which functors may be useful. |
|||
|
|
|
Functors are used in gtkmm to connect some GUI button to an actual C++ function or method. If you use the pthread library to make your app multithreaded, Functors can help you.
So you can't run (in a simple obvious way), methods from your class in a thread without doing something extra. A very good way of dealing with threads in C++, is creating your own Also, the |
||||
|
|
|
For the newbies like me among us: after a little research I figured out what the code jalf posted did. A functor is a class or struct object which can be "called" like a function. This is made possible by overloading the () operator. The () operator (not sure what its called) can take any number of arguments. Other operators only take two ie. the + operator can only take two values (one on each side of the operator) and return whatever value you have overloaded it for. You can fit any number of arguments inside a () operator which is what gives it its flexibity. To create a functor first you create your class. Then you create a constructor to the class with a parameter of your choice of type and name. This is followed in the same statement by an initializer list (which uses a single colon operator, something I was also new to) which consructs the class member objects with the previously declared parameter to the constructor. Then the () operator is overloaded. Finally you declare the private objects of the class or struct you have created. My code (I found jalf's variable names confusing)
If any of this is inaccurate or just plain wrong feel free to correct me! |
|||
|
|
|
To add on ,I have used function objects to fit an existing legacy method to the command pattern; (only place where the beauty of OO paradigm true OCP I felt ); Also adding here the related function adapter pattern. Suppose your method has the signature:
We will see how we can fit it for the Command pattern - for this, first, you have to write a member function adapter so that it can be called as a function object. Note - this is ugly, and may be you can use the Boost bind helpers etc., but if you can't or don't want to, this is one way.
Also, we need a helper method mem_fun3 for the above class to aid in calling.
} Now, in order to bind the parameters, we have to write a binder function. So, here it goes:
And, a helper function to use the binder3 class - bind3:
Now, we have to use this with the Command class; use the following typedef:
Here is how you call it:
Note: f3(); will call the method task1->ThreeParameterTask(21,22,23);. The full context of this pattern at the following link |
|||
|
|
|
A functor is a higher-order function that applies a function to the parametrized(ie templated) types. For example, we could define a functor for
This function takes a
Heres a simple example that converts the type to a
There are two laws that functors should follow. The first is the identity law, which states that if the functor is given an identity function, it should be the same as applying the identity function to the type, that is
The next law is the composition law, which states that if the functor is given a composition of two function, it should be the same as applying the functor for the first function and then again for the second function. So,
|
|||
|
|
|
I have "discovered" a very interesting use of functors: I use them when I have not a good name for one method, as a functor is a method without name ;-) |
|||
|
|