我在将 const ref 参数传递给调用其他函数的模板函数时遇到问题。考虑以下代码:
struct A
{
void foo(const int& i) { }
};
template <class ...Args>
void a_caller(A& a, void(A::*f)(Args...), Args&& ...args)
{
(a.*f)(std::forward<Args>(args)...);
}
int main()
{
int i = 42;
A a;
a_caller(a, &A::foo, i); // (1) compiler error
a_caller<const int&>(a, &A::foo, i); // (2) ok
}
所以,我有一个A::foo
带有const int&
参数的成员函数,我想在 wrapper 中调用它a_caller
。第 (1) 行导致以下错误:
'void a_caller(A &,void (__thiscall A::* )(Args...),Args &&...)' : template parameter 'Args' is ambiguous
see declaration of 'a_caller'
could be 'const int&'
or 'int&'
我的第一个问题是为什么会这样?我给编译器一个非重载函数A::foo,为什么不能从中推导Args
出来?第二个问题是为什么 std::make_unique 不会发生这种情况?以下代码对我来说看起来相同,但编译器推断构造函数参数类型没有问题:
struct A
{
A(const int& i) { }
};
int main()
{
int i = 42;
auto aptr = std::make_unique<A>(i);
}