给定以下成员函数重载以采用各种仿函数
class Foo {
public:
void bar(boost::function<void(int)> func);
void bar(boost::function<void(float)> func);
void bar(boost::function<void(const std::vector<float>&)> func);
}
和功能
void baz(float f) { std::cout << "float :" << f << std::endl; }
那为什么要取baz的普通函数指针
Foo foo;
foo.bar(&baz);
产生这个错误:
error: call of overloaded ‘bar(void (*)(float))’ is ambiguous
note: candidates are: void Foo::bar(boost::function<void(int)>)
note: void Foo::bar(boost::function<void(float)>)
note: void Foo::bar(boost::function<void(const std::vector<float, std::allocator<float> >&)>)
如何解决这种歧义?