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
}