我正在做一些看起来像这样的包装器:
#include <iostream>
template<class T, class Value>
void Apply(void (T::*cb)(Value), T* obj, Value v)
{
(obj->*cb)(v);
}
class Foo
{
public:
void MyFunc(const int& i)
{
std::cout << i << std::endl;
}
const int& GetValue()
{
return i_;
}
private:
int i_ = 14;
};
int main()
{
Foo f;
Apply(&Foo::MyFunc, &f, f.GetValue());
}
我收到了这个错误:
Apply
: 没有找到匹配的重载函数。void Apply(void (__thiscall T::* )(Value),T *,Value)
: 模板参数Value
不明确,可以是int
或const int &
.void Apply(void (__thiscall T::* )(Value),T *,Value)
: 无法推断Value
from 的模板参数const int
。
所以我知道它来自模板参数推导,但是我不明白如何。为什么Value
不评估const int&
两次?