C:函数指针数组的定义

C:函数指针数组的定义

// [[1]] 使用typedef定义函数指针为一个类型,更喜欢这种方式
   typedef int (*MYFUN)(int, int);
MYFUN funcs[10];

// [[2]] 使用typedef定义函数指针数组为一个类型,不是很直观
typedef int (*MYFUN2[10])(int, int);
MYFUN2 funcs2;

int main(int argc, char *argv[]) {
    funcs[0] = add;
    qDebug() << (*funcs[0])(2, 3); // 也可以用 funcs[0](2, 3).

    funcs2[0] = add;
    qDebug() << (*funcs2[0])(2, 3);

    return 0;
}
   
@import url(http://www.cppblog.com/CuteSoft_Client/CuteEditor/Load.ashx?type=style&file=SyntaxHighlighter.css);@import url(/css/cuteeditor.css);

你可能感兴趣的:(C:函数指针数组的定义)