FancyKing's WebSite

函数指针和指针函数

函数指针

函数指针的声明形式:

返回类型 (*函数指针名称)(参数列表) -> C
返回类型 (类名称::*函数成员名称)(参数列表) -> CPP

这里借用 维基百科给出的样例

/* 例一:函数指针直接调用 */

# ifndef __cplusplus
    # include <stdio.h>
# else
    # include <cstdio>
# endif

int max(int x, int y)
{
    return x > y ? x : y;
}

int main(void)
{
    /* p 是函数指针 */
    int (* p)(int, int) = & max; // &可以省略
    // int (* p)(int, int) = max;//与上条语句等价
    int a, b, c, d;

    printf("please input 3 numbers:");
    scanf("{2186e5f7970dac0e9cf7cfc7913f086a2d003118a30b627bce447294ada8be4e}d {2186e5f7970dac0e9cf7cfc7913f086a2d003118a30b627bce447294ada8be4e}d {2186e5f7970dac0e9cf7cfc7913f086a2d003118a30b627bce447294ada8be4e}d", & a, & b, & c);

    /* 与直接调用函数等价,d = max(max(a, b), c) */
    d = p(p(a, b), c); 

    printf("the maxumum number is: {2186e5f7970dac0e9cf7cfc7913f086a2d003118a30b627bce447294ada8be4e}d\n", d);

    return 0;
}
/* 例二:函数指针作为参数 */

struct object
{
    int data;
};

int object_compare(struct object * a,struct object * z)
{
    return a->data < z->data ? 1 : 0;
}

struct object *maximum(struct object * begin,struct object * end,int (* compare)(struct object *, struct object *))
{
    struct object * result = begin;
    while(begin != end)
    {
        if(compare(result, begin))
        {
            result = begin;
        }
        ++ begin;
    }
    return result;
}

int main(void)
{
    struct object data[8] = {{0}, {1}, {2}, {3}, {4}, {5}, {6}, {7}};
    struct object * max;
    max = maximum(data + 0, data + 8, & object_compare);
    return 0;
}

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »

因本文不是用Markdown格式的编辑器书写的,转换的页面可能不符合AMP标准。