6.7 函数指针

函数指针重载:参数类型要匹配,指针类型必须精确匹配

 

使用decltype作用于某个函数时,要显示加上*以表示我们需要返回指针,而非函数本身

 

 

int func(int a, int b);

using pFunc1 = decltype(func) *;
typedef decltype(func) *pFunc2;
using pFunc3 = int (*)(int a, int b);
using pFunc4 = int(int a, int b);
typedef int(*pFunc5)(int a, int b);
using pFunc6 = decltype(func);

std::vector<pFunc1> vec1;
std::vector<pFunc2> vec2;
std::vector<pFunc3> vec3;
std::vector<pFunc4*> vec4;
std::vector<pFunc5> vec5;
std::vector<pFunc6*> vec6;





原文地址:https://www.cnblogs.com/xiejunzhao/p/b8e20aea6787caa7bc6cc9aaad5c10e0.html