2013年5月23日

指向 类成员函数 指针的用法

摘要: C++在使用函数指针调用类成员函数的时候会遇到很多问题,以下是解决办法:代码//test.hclass CMyc{public: int fun(int); typedef int (CMyc::*FUNPTRTYPE)(int); void fun2(int);};//test.cpp#include <iostream>#include "test.h"//写在这也可以//typedef int (CMyc::*FUNPTRTYPE)(int);int CMyc::fun(int i) { std::cout << i << std: 阅读全文

posted @ 2013-05-23 16:02 horane.jo 阅读(275) 评论(0) 推荐(0) 编辑

导航