警告:从不兼容的指针类型初始化[-Wincompatible-pointer-types]

时间:2018-05-23 08:33:16

标签: c gcc

请帮我识别菜单​​项的函数指针的问题,给出错误"从不兼容的指针类型初始化"

这是头文件

/**
 * Represents a function that can be selected from the list of
 * menu_functions - creates a new type called a menu_function.
 */
void displayItems(VmSystem * system);
typedef void (*MenuFunction)(VmSystem *);


/**
 * Represents a menu item to be displayed and executed in the program.
 **/
typedef struct menu_item
{
    char text[MENU_NAME_LEN + NULL_SPACE];
    MenuFunction function;
} MenuItem;

void initMenu(MenuItem * menu);
MenuFunction getMenuChoice(MenuItem * menu);


MenuItem menu[NUM_MENU_ITEMS];

主菜单文件

typedef enum boolean
{
    FALSE = 0,
    TRUE
} Boolean;

void initMenu(MenuItem * menu)
{
    /* Strings names of menu items */
    char * menu_items[] = {
        "Display Items",
        "Purchase Items",
        "Save and Exit",
        "Add Item",
        "Remove Item",
        "Display Coins",
        "Reset Stock",
        "Reset Coins",
        "Abort Program"
    };

菜单项的功能指针

    Boolean(*MenuFunction[])(VmSystem *) = {
        displayItems,  /*Here i got the error */
        purchaseItem,
        saveStock,
        addItem,
        removeItem,
        displayCoins,
        resetStock,
        resetCoins,
        abortProgram
    };

1 个答案:

答案 0 :(得分:0)

你有两个问题。

第一个:

typedef void (*MenuFunction)(VmSystem *);

接着是

Boolean(*MenuFunction[])(VmSystem *) = { ... };

两个不同的东西,同名。

然后,对于您的错误:您在评论中说明了displayItem匹配函数类型MenuFunction,并返回void。问题是数组MenuFunction(看看它有多混乱?)是一个返回Boolean的函数数组。这两种类型不兼容,您必须更改一种。