1

我想要实现的是制作一个可以将不同的仿函数作为参数的仿函数。

编辑:我的问题的原因,“最令人烦恼的解析”,以及解决方案的详细描述:查看这个问题和答案,整个标签,甚至是维基百科页面。尽管如此,在询问之前我还是无法确定问题所在,并且会留下这个问题,因为它可能对其他人有帮助。

我做了什么:

在头文件中functor.hpp

#ifndef FUNCTOR_HPP
#define FUNCTOR_HPP

#include <functional>

template <typename T, typename BinOp = typename std::plus<T>>
struct doer {
    BinOp op;
    doer(BinOp o = std::plus<T>()) : op(o) {}
    T operator()(const T& a, const T& b) const
    { return op(a, b); }
};

#endif // FUNCTOR_HPP

有了这个头文件,我可以写一个functor.cpp这样的程序:

#include <iostream>
#include "functor.hpp"

int main()
{
    doer<int> f;
    std::cout << f(3, 7) << std::endl;
}

我可以编译并运行它以获得预期的结果:

$ make functor
g++ -std=c++14 -pedantic -Wall    functor.cpp   -o functor
$ ./functor
10
$ 

我正在努力寻找一种方法来doer用不同的运算符(不是std::plus<T>)实例化我的。

doer<int, std::multiplies<int>> f2(std::multiplies<int>());

这编译没有问题,但我无法找到一种方法来调用f2(3, 7),以获取产品 21。例如,如果我在程序中添加另一行:

int r = f2(3, 7);

并尝试编译,我得到:

$ make functor
g++ -std=c++14 -pedantic -Wall    functor.cpp   -o functor
functor.cpp: In function ‘int main()’:
functor.cpp:10:20: error: invalid conversion from ‘int’ to ‘std::multiplies<int> (*)()’ [-fpermissive]
     int r = f2(3, 7);
                    ^
functor.cpp:10:20: error: too many arguments to function ‘doer<int, std::multiplies<int> > f2(std::multiplies<int> (*)())’
functor.cpp:9:37: note: declared here
     doer<int, std::multiplies<int>> f2(std::multiplies<int>());
                                     ^
functor.cpp:10:20: error: cannot convert ‘doer<int, std::multiplies<int> >’ to ‘int’ in initialization
     int r = f2(3, 7);
                    ^

到底是怎么回事?似乎几乎f2(3, 7)以某种方式没有调用重载operator()...

4

1 回答 1

1

最令人头疼的解析。尝试这个:

doer<int, std::multiplies<int>> f2((std::multiplies<int>()));

或这个:

doer<int, std::multiplies<int>> f2 = std::multiplies<int>();

或这个:

doer<int, std::multiplies<int>> f2{std::multiplies<int>()};
于 2015-08-04T13:22:43.220 回答