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?
|
7
|
|||
|
|
|
A functor is pretty much just a class which defines the operator(). That makes it "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, 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. 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 more efficient. In the above example, the compiler knows exactly which function transform calls. It calls add_x::operator(). That means it can inline that function call. That makes it just as efficient as if I had manually called the function on each value of the vector. 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. |
|||
|
|
|
|
See this article. Essentially, a functor is a wrapper around a function pointer. They are functions with a state. Excerpt: "Functors are functions with a state. In C++ you can realize them as a class with one or more private members to store the state and with an overloaded operator () to execute the function. Functors can encapsulate C and C++ function pointers employing the concepts templates and polymorphism. You can build up a list of pointers to member functions of arbitrary classes and call them all through the same interface without bothering about their class or the need of a pointer to an instance. All the functions just have got to have the same return-type and calling parameters. Sometimes functors are also known as closures. You can also use functors to implement callbacks." |
||
|
|
|
|
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 an MultiplyBy functor that multiplies it's argument by a specified amount:
Then you could pass a
Another advantage to 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 |
|||
|
|
|
Little addition. You can use boost::function, to create functors from functions and methods, like this:
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 :) |
||
|
|
|
|
The Command Pattern suggests many problem/solution domains in which functors may be useful. |
||
|
|
|
|
Used instead of plain function: Pros:
Cons:
Used instead of function pointer: Pros:
Cons:
Used instead of polymorphism: Pros:
Cons:
|
||
|
|
