当使用静态成员函数指针作为模板参数时,我使用最新的 VC++ 编译器(2012 年 11 月 CTP)得到这个编译错误:
error C2027: use of undefined type 'wrapper<int (int,int),int A::f1(int,int)>'
但是当使用免费功能时,一切正常。我在 g++ 中查找了一些类似的错误(指向静态成员函数的指针作为 g++ 的模板参数“无效”),但它明确指出该参数无效。静态函数有什么不同?
我将函数转换为void(*)(void)
因为构造之类<typename T_Ret, typename... T_Args, T_Ret(*)(T_Args...)>
的不编译由于其他一些不相关的原因。
struct A
{
static int f1(int a, int b)
{
return a + b;
}
};
int f2(int a, int b)
{
return a + b;
}
template <typename Sig, void(*fnc)(void)>
struct wrapper;
template <void(*fnc)(void), typename T_Ret, typename... T_Args>
struct wrapper<T_Ret (T_Args...), fnc>
{
static bool apply()
{
// get some ints here
int a = 1;
int b = 2;
typedef T_Ret (fnc_ptr*)(T_Args...);
int res = ( (fnc_ptr)fnc )(a, b);
// do smth with result
res;
return true; // or false
}
};
int main()
{
bool res;
res = wrapper<decltype(A::f1), (void(*)(void))A::f1>::apply(); // error
res = wrapper<decltype(f2), (void(*)(void))f2>::apply(); // compiles ok
return 0;
}
编辑:好的,我将问题缩小到 decltype。当我明确编写类型时,一切正常:
res = wrapper<int(int, int), (void(*)(void))A::f1>::apply(); // compiles ok