int func(int i,int j)
{
return i+j;
}
int main()
{
typedef decltype(func) *p;或者int (*p) (int i,int j)
vector
s
}
int func(int i,int j)
{
return i+j;
}
int main()
{
typedef decltype(func) *p;或者int (*p) (int i,int j)
vector
s
}
这个的确可以。 如下代码:
int func(int i, int j)
{
return i + j;
}
typedef int(*pFunc)(int i, int j);
vector<pFunc> vec;