我猜想在结构体内部使用函数指针与将函数封装在结构体中有关系...?如果是这样,那么这将如何实现?

在结构内部拥有函数指针而不是简单地定义函数会带来什么好处?

最佳答案

结构内部的函数指针是C语言中对象编程的基础(请参阅http://www.planetpdf.com/codecuts/pdfs/ooc.pdf)。对于中大型C项目确实如此。

一个例子:

header :

typedef struct TPile
{
    int(*Push)(struct TPile*, int);
    int(*Pop)(struct TPile*);
    void(*Clear)(struct TPile*);
    void(*Free)(struct TPile*);
    int(*Length)(struct TPile*);
    void(*View)(struct TPile*);

    int Nombre;

    struct Titem *Top;

} TPile ;

来源:
TPile TPile_Create()
{
    TPile This;
    TPile_Init(&This);
    This.Free = TPile_Free;

    return This;
}


TPile* New_TPile()
{
    TPile *This = malloc(sizeof(TPile));
    if(!This) return NULL;
    TPile_Init(This);
    This->Free = TPile_New_Free;

    return This;
}


void TPile_Clear(TPile *This)
{
    Titem *tmp;

    while(This->Top)

    {
      tmp = This->Top->prec;
      free(This->Top);
      This->Top = tmp;
    }

    This->Nombre = 0;
}

关于c - c中的struct内部的函数指针有什么用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15612488/

10-13 06:20