我遇到了这段代码的问题,因为编译器不允许我运行代码,因为这样说
cannot convert 'void (Menu::*)(int)' to 'void (Menu::*)(int*)' in assignment.
我知道这个程序可以用普通函数执行。我已经阅读了typedef
的内容,但我还没有编程一段时间,我的英语不是原生的。代码中有一些西班牙语,但不会影响代码,如果你愿意,我可以翻译,但我认为它很容易理解。如果有人可以帮助我,我将不胜感激。
#include "Menu.h"
#include<iostream>
using std::cout;
using std::endl;
using std::cin;
int main()
{
void (Menu::*fptr[3])( int*);
typedef void (Menu::*funcion0)( int &)
fptr[0] = &Menu::funcion0; //problem
fptr[1] = &Menu::funcion1; //problem
fptr[2] = &Menu::funcion2; //problem
//void (*f[ 3 ])( int ) = { &Menu::funcion0, &Menu::funcion1, &Menu::funcion2 };
int opcion;
cout << "Escriba un numero entre 0 y 2, 3 para terminar: ";
cin >> opcion;
while ( ( opcion >= 0 ) && ( opcion < 3 ) )
{
//(*f[ opcion ])( opcion );
cout << "Escriba un numero entre 0 y 2, 3 para terminar: ";
cin >> opcion;
}
cout << "Se completo la ejecucion del programa." << endl;
return 0;
}
Menu.h头文件
#ifndef MENU_H_INCLUDED
#define MENU_H_INCLUDED
class Menu
{
public:
Menu();
void funcion0( int );
void funcion1( int );
void funcion2( int );
};
#endif // MENU_H_INCLUDED
Menu.cpp
#include "Menu.h"
#include <iostream>
using std::cout;
using std::cin;
Menu::Menu()
{
}
void Menu::funcion0( int a )
{
cout << "Usted escribio " << a << " por lo que se llamo a la funcion0\n\n";
}
void Menu::funcion1( int b )
{
cout << "Usted escribio " << b << " por lo que se llamo a la funcion1\n\n";
}
void Menu::funcion2( int c )
{
cout << "Usted escribio " << c << " por lo que se llamo a la funcion2\n\n";
}
答案 0 :(得分:1)
您的成员函数将int
作为参数,但是您创建了指向成员函数的指针数组,就好像参数是int*
类型的指针一样。
函数参数和返回类型的指针必须与指向的函数完全相同。变化:
void (Menu::*fptr[3])( int*);
为:
void (Menu::*fptr[3])(int);