首页 > 其他 > 详细

6.7 函数指针

时间:2017-01-28 18:06:10      阅读:291      评论:0      收藏:0      [点我收藏+]

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

 

使用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;





6.7 函数指针

原文:http://www.cnblogs.com/xiejunzhao/p/b8e20aea6787caa7bc6cc9aaad5c10e0.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!