函数对象作为模板参数

时间:2015-11-04 19:45:13

标签: c++ function-object

template <typename elemType, typename Comp = less<elemType> >
class LessThanPred {
    public:
        LessThanPred(const elemType &val) : _val(val){}
        bool operator()(const elemType &val) const
        { return Comp(val, _val); }
        void val(const elemType &newval) { _val = newval; }
        elemType val() const { return _val; }
private:
    elemType _val;};

这是Essential c ++的一个例子。 Comp显然是一个函数对象类名。为什么我可以直接使用Comp(val, _val)?通常我认为我应该首先定义一个这样的函数对象:Comp comp,然后调用comp而不是Comp

1 个答案:

答案 0 :(得分:1)

代码编译是因为模板成员仅在实例化时检查语义正确性。但是,代码在语法上是格式良好的。但是,当您尝试实例化LessThanPred<T>的函数调用运算符时,您将收到编译器错误。例如,使用版本clang(3.6.1)我使用

less-than.cpp:8:18: error: no matching constructor for initialization of 'std::less<int>'
        { return Comp(val, _val); }
                 ^    ~~~~~~~~~
less-than.cpp:17:25: note: in instantiation of member function 'LessThanPred<int, std::less<int> >::operator()' requested here
    LessThanPred<int>(2)(1);

尝试将此功能用作

LessThanPred<int>(2)(1)