免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 9260 | 回复: 11
打印 上一主题 下一主题

[函数] 为什么不能在构造函数中初始化函数指针数组呢? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-05-20 14:36 |只看该作者 |倒序浏览
还是函数指针数组的问题:定义一个函数指针数组成员,但不能在构造函数中初始化。请帮帮忙指教先?
//FunctionPointTest.cpp
#include <iostream.h>;

class Card
{
public:
        void fun1();
        void fun2();
        void fun3();
        void getFunction(int);
private:
        void (*menu[3])();//define a function pointer array
};

Card::Card()
{
        (menu[0])() = fun1();//why not initialize array?
        (menu[1])() = fun2();
        (menu[2])() = fun3();
}

void Card::getFunction(int choice)
{
        (* menu[choice])();
}

void Card::fun1()
{
        cout << "fun1 output." << endl;
}

void Card::fun2()
{
        cout << "fun2 output." << endl;
}

void Card::fun3()
{
        cout << "fun3 output." << endl;
}


int main(int argc, char *args[])
{
        Card card;

        int choice;
        cout << "Enter a number from 0 to 2:";
        cin >;>; choice;

        while ( choice >;= 0 && choice < 3 )
        {
                card.getFunction(choice);
                cout << "Enter a number from 0 to 2:";
                cin >;>; choice;
        }

        return 0;
}
Compilier构造函数提示错误。

论坛徽章:
0
2 [报告]
发表于 2004-05-20 15:00 |只看该作者

为什么不能在构造函数中初始化函数指针数组呢?

语法错误

(menu[0])() = fun1();

这表示把 fun1() 的返回值赋值给 (menn[0]()) 的返回值,出错

论坛徽章:
0
3 [报告]
发表于 2004-05-20 15:08 |只看该作者

为什么不能在构造函数中初始化函数指针数组呢?

几个错误.
1.构造函数需要声明.
class Card
{
public:
        Card();

所以,报了你贴出的错误.
2.
  1. Card::Card()
  2. {
  3.         menu[0] = fun1;
  4.         menu[1] = fun2;
  5.         menu[2] = fun3;
  6. }
复制代码

函数指针如此赋值.
3.对象函数指针如此调用
  1. void Card::getFunction(int choice)
  2. {
  3.         (this->;*menu[choice])();
  4. }
复制代码

4.你搬起了一块对象函数指针的大石头,你确信你穿了一双足够厚的铁鞋了且有力气把它扔出去吗?
5.多看看C++基本语法的书.

论坛徽章:
0
4 [报告]
发表于 2004-05-20 15:10 |只看该作者

为什么不能在构造函数中初始化函数指针数组呢?

去掉了操作符()之后,ERROR一样存在。其实最初我写的语句是:
(menu[0]) = fun1;只用了函数名。但是因为第一次想到用函数指针数组成员,却不知道怎样写,于是猜测编译会不会这样理解函数指针数组成员的赋值呢?于是写成这样了。
Thank your discussion先!

论坛徽章:
0
5 [报告]
发表于 2004-05-20 15:13 |只看该作者

为什么不能在构造函数中初始化函数指针数组呢?

原帖由 "zeng_zong" 发表:
n1;只用了函数名。但是因为第一次想到用函数指针数组成员,却不知道怎样写,于是猜测编译会不会这样理解函数指针数组成员的赋值呢?于是写成这样了。
Thank your discussion先!

看看我发的帖子,去试试.

论坛徽章:
0
6 [报告]
发表于 2004-05-20 15:25 |只看该作者

为什么不能在构造函数中初始化函数指针数组呢?

试了。但compilier对menu[0] = fun1;语句报错如下:
error C2440: '=' : cannot convert from 'void (__thiscall Card::*)(void)' to 'void (__cdecl *)(void)'

对语句(this->;*menu[choice])();报错如下:
error C2297: '->;*' : illegal, right operand has type 'void (__cdecl *)(void)'
问题还是不通。

论坛徽章:
0
7 [报告]
发表于 2004-05-20 15:29 |只看该作者

为什么不能在构造函数中初始化函数指针数组呢?

c++,哦,,不熟

论坛徽章:
0
8 [报告]
发表于 2004-05-20 15:41 |只看该作者

为什么不能在构造函数中初始化函数指针数组呢?

Card::Card()
{
   menu[0] = &Card::fun1;
        menu[1] = &Card::fun2;
        menu[2] = &Card::fun3;
}

这样在VC LINUXG++ HP-UX aCC 都通过.
完整代码如下帖.

论坛徽章:
0
9 [报告]
发表于 2004-05-20 15:42 |只看该作者

为什么不能在构造函数中初始化函数指针数组呢?

  1.                      //FunctionPointTest.cpp
  2. #include <iostream.h>;

  3. class Card
  4. {
  5. public:
  6.         Card();
  7. public:
  8. void fun1();
  9. void fun2();
  10. void fun3();
  11. void getFunction(int);
  12. private:
  13.         void (Card::*menu[3])();//define a function pointer array
  14. };

  15. Card::Card()
  16. {
  17.    menu[0] = &Card::fun1;
  18.         menu[1] = &Card::fun2;
  19.         menu[2] = &Card::fun3;
  20. }

  21. void Card::getFunction(int choice)
  22. {
  23.         (this->;*menu[choice])();
  24. }

  25. void Card::fun1()
  26. {
  27. cout << "fun1 output." << endl;
  28. }

  29. void Card::fun2()
  30. {
  31. cout << "fun2 output." << endl;
  32. }

  33. void Card::fun3()
  34. {
  35. cout << "fun3 output." << endl;
  36. }


  37. int main(int argc, char *args[])
  38. {
  39. Card card;

  40. int choice;
  41. cout << "Enter a number from 0 to 2:";
  42. cin >;>; choice;

  43. while ( choice >;= 0 && choice < 3 )
  44. {
  45. card.getFunction(choice);
  46. cout << "Enter a number from 0 to 2:";
  47. cin >;>; choice;
  48. }

  49. return 0;
  50. }
复制代码

论坛徽章:
0
10 [报告]
发表于 2004-05-20 15:45 |只看该作者

为什么不能在构造函数中初始化函数指针数组呢?

Really?
Oh, fine-- I'm waiting...
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP