C++程序 关于typedef (*function)(void); 5

原程序如下:#include<iostream>usingnamespacestd;classFUNCTION{public:virtualvoidtest1(void)... 原程序如下:

#include<iostream>
using namespace std;
class FUNCTION
{
public:
virtual void test1(void)
{cout<<"hello,fhis is test 1!"<<endl;}

virtual void test2(void)
{cout<<"hello,fhis is test 2!"<<endl;}

virtual void test3(void)
{cout<<"hello,fhis is test 3!"<<endl;}
};
typedef void (*funptr)(void);//函数指针数据类型
void main()
{
FUNCTION function;

cout<<"/****************用直接输出****************/"<<endl;
function.test1();

cout<<"/****************用指针方式输出************/"<<endl;
FUNCTION *fun=&function;
fun->test2();

cout<<"/*********用函数指针输出虚函数地址*********/"<<endl;
cout<<"虚函数表地址:"<<(int *)(& function)<<endl;
cout<<"虚函数表 第一个函数地址:"<<(int*)*(int *)(& function)<<endl;

cout<<"/**************用函数指针输出1*************/"<<endl;
funptr Pfun=NULL;//定义一个函数指针pfun
Pfun=(funptr)*((int*)*(int *)(&function)+0);//取虚函数表第1个
Pfun();
Pfun=(funptr)*((int*)*(int *)(&function)+1);//取虚函数表第2个
Pfun();
Pfun=(funptr)*((int*)*(int *)(&function)+2);//取虚函数表第3个
(*Pfun)();

cout<<"/**************用函数指针输出2*************/"<<endl;
funptr words[3]={&function.test1,&function.test2,&function.test3};
for(int i=0;i<3;i++)
{
Pfun=words[i];
(*Pfun)();
}

}

错误信息:
main.cpp(41) : error C2276: '&' : illegal operation on bound member function expression
F:\main.cpp(41) : error C2276: '&' : illegal operation on bound member function expression
F:main.cpp(41) : error C2276: '&' : illegal operation on bound member function expression

目测是:funptr words[3]={&function.test1,&function.test2,&function.test3}; 错了,
谁能帮我改下,哪里错了,为什么错呢?谢谢了,
展开
 我来答
zjfaok
2013-10-26 · TA获得超过6805个赞
知道大有可为答主
回答量:4146
采纳率:62%
帮助的人:1568万
展开全部
function.test1//规定这种语法只能后面跟随括号用于成员函数调用……
追问
怎么改?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式