show/hide this revision's text 2 Type inference and functionoids.

EDIT The explicit <int> type qualification is necessary in the above code. Type inference only works for function calls, not for instance creation. However, it can often be omitted by employing a make helper function. This is done in the STL for pairs:

template <typename T1, typename T2>pair<T1, T2> make_pair(T1 const& first, T2 const& second) {    return pair<T1, T2>(first, second);// Implied types:pair<int, float> pif = make_pair(1, 1.0f);

Someone mentioned in the comments that functors are sometimes called functionoids”. Yesish but not quite. In fact, functor” is a (somewhat weird) abbreviation for function object”. A functionoid is conceptually similar but realized by employing virtual functions (although they are sometimes used synonymously). For example, a functionoid could look like this (along with its necessary interface definition):

template <typename T, typename R>struct UnaryFunctionoid {    virtual R invoke(T const& value) const = 0;struct IsEvenFunction : UnaryFunctionoid<int, bool> {    bool invoke(int const& value) const { return value % 2 == 0; }// call it, somewhat clumsily:UnaryFunctionoid const& f = IsEvenFunction();f.invoke(4); // true

Of course, this loses any performance advantage that a functor has because of its virtual function call. It is therefore used in a different context that actually requires a polymorphic (stateful) runtime function.

The C++ FAQ has more to say on this subject.

show/hide this revision's text 1

Someone mentioned function pointers (and why you should rather use if). Well, even better: use functors instead, they get inlined and usually have zero overhead. A functor is a structure (or class, but usually the former) that overloads operator () and instances of which can be used just like an ordinary function:

template <typename T>
struct add {
    operator T ()(T const& a, T const& b) const { return a + b; }
};

int result = add<int>()(1, 2);

These can be used almost in every context where an ordinary function or function pointer could be used. They usually derive from either std::unary_function or std::binary_function but that's often not necessary (and actually only done to inherit some useful typedefs).