码迷,mamicode.com
首页 > 其他好文 > 详细

6.7 函数指针

时间:2017-01-28 18:07:45      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:指针类型   null   lib   ack   int   重载   back   margin   tle   

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

 

使用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 函数指针

标签:指针类型   null   lib   ack   int   重载   back   margin   tle   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!