The function-call-operator tag has no wiki summary.
59
votes
10answers
33k views
C++ Functors - and their uses
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?
9
votes
11answers
3k views
Why override operator()?
In the Boost Signals library, they are overloading the () operator.
Is this a convention in C++? For callbacks, etc.?
I have seen this in code of a co-worker (who happens to be a big Boost fan). Of ...
3
votes
4answers
78 views
What does void Classname::operator()(){ … } do?
Im working my way through some C++ code and came across the following
void Classname::operator()()
{
//other code here
}
I assume this has something to do with overloading the constructor, ...
0
votes
2answers
184 views
Function call operator [closed]
Possible Duplicates:
C++ Functors - and their uses.
Why override operator() ?
I've seen the use of operator() on STL containers but what is it and when do you use it?