gpt4 book ai didi

c++ - 完美转发到函数指针调用

转载 作者:行者123 更新时间:2023-11-27 22:46:05 24 4
gpt4 key购买 nike

我正在尝试在 Visual Studio 2015 中编译简单的模板化包装器

template<typename Rv, typename ...Args>
Rv call(Rv(*fp)(Args...), Args&&...args) {
return (*fp)(std::forward<Args>(args)...);
}

int iArg;
void(*fn)(int);
call(fn, iArg);`

我收到以下编译器错误:

test.cpp(30): error C2672: 'call': no matching overloaded function found
error C2782: 'Rv call(Rv (__cdecl *)(Args...),Args &&...)': template parameter 'Args' is ambiguous
1> test.cpp(22): note: see declaration of 'call'
1> test.cpp(30): note: could be 'int'
1> test.cpp(30): note: or 'int&'

为什么?

提前致谢

最佳答案

您必须拆分 args 以允许正确推导:

template <typename Rv, typename... Args, typename... Ts>
Rv call(Rv(*fp)(Args...), Ts&&...args) {
return (*fp)(std::forward<Ts>(args)...);
}

关于c++ - 完美转发到函数指针调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42707044/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com