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}; 错了,
谁能帮我改下,哪里错了,为什么错呢?谢谢了, 展开
#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}; 错了,
谁能帮我改下,哪里错了,为什么错呢?谢谢了, 展开
1个回答
展开全部
function.test1//规定这种语法只能后面跟随括号用于成员函数调用……
追问
怎么改?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询