c++ 函数指针
第一个例子:#include <iostream>
using namespace std;
class human
{
public:
void run()
{
cout << "跑步.\n";
}
};
int main()
{
void (human::*ph)();
human a;
human *p=&a;
ph=&human::run;
(p->*ph)();//去掉*为什么会报错??
}
第二个例子:
#include <iostream>
using namespace std;
void func()
{
cout << "跑步.\n";
}
int main()
{
void (*p)();
p=func;
(*p)();//去掉*为什么不会报错???和第一个例子为什么不一样???
}
(p->*ph)();//去掉*为什么会报错??
。。。。。。class里面没有ph元素吧?
第二个我是这么理解:
void func()
{
cout << "跑步.\n";
}
那么调用func函数就是:
int main()
{
func();
}
func这个是函数名,其实也是函数的入口地址
如果p = func;
那么p也是入口地址,当然不用加*p 就可以直接调用了
wangjie5540 发表于 2013-9-18 22:06 static/image/common/back.gif
(p->*ph)();//去掉*为什么会报错??
。。。。。。class里面没有ph元素吧?
嗯嗯 谢谢了
页:
[1]