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

函数指针使用示例

时间:2014-06-18 21:11:21      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   使用   

1、函数指针使用示例

typedef void (*FPFunc) ();

void func() {}

int main()
{
    FPFunc pFunc = func;
    pFunc();
}

 

2、类成员函数指针使用示例

class C {
public:
   typedef void (C::*FPFunc)();
   
   FPFunc funcArray[2];
   
   void func1(){}
   void func2(){}
   
   C() {
      funcArray[0] = &C::func1;
      funcArray[1] = &C::func2;
   }
   
   void func3() {
      (this->* funcArray[0])();
   }
};

 

函数指针使用示例,布布扣,bubuko.com

函数指针使用示例

标签:style   class   blog   code   color   使用   

原文地址:http://www.cnblogs.com/shokey520/p/3790358.html

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