这篇“C语言中怎么在结构体内定义函数”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“C语言中怎么在结构体内定义函数”文章吧。
如何在结构体内定义函数
结构体中引入函数
#include <stdio.h>
struct student {
    char *name;
    int age;
    void (*printInfo)(struct student *stu);
};
void printInfo(struct student *stu)
{
    printf("name = %s, age = %d", stu->name, stu->age);
}
int main(int argc, char**argv)
{
    struct student students[] = {
        {"zhangsan", 10, printInfo},
        {"lisi", 26, printInfo},
    };
    students[0].printInfo(&students[0]);
    students[1].printInfo(&students[1]);
}C++中结构体引入
#include <stdio.h>
struct student {
    char *name;
    int age;
    void printInfo(void)
    {
        printf("name = %s, age = %d
", name, age);
    }
};
int main(int argc, char**argv)
{
    struct student students[] = {
        {"zhangsan", 10},
        {"lisi", 26},
    };
    students[0].printInfo();
    students[1].printInfo();
}C++中类引入
#include <stdio.h>
class student {
public:
    char *name;
    int age;
    void printInfo(void)
    {
        printf("name = %s, age = %d
", name, age);
    }
};
int main(int argc, char**argv)
{
    struct student students[] = {
        {"zhangsan", 10},
        {"lisi", 26},
    };
    students[0].printInfo();
    students[1].printInfo();
}结构体成员有函数的定义与使用
```c
#include <stdio.h>
typedef int (*FunHandle)(int, int);          //定义 指向函数的指针 
struct Example
{
    int a;
    int b;
    FunHandle fun;                 //函数作为结构体成员
};
int add(int, int);
int main()
{
    struct Example ex;
    int r;
    ex.a = 1;
    ex.b = 2;
    ex.fun = add;
    r = ex.fun(ex.a, ex.b);          //结构体中函数的 使用
    printf("%d + %d = %d 
", ex.a, ex.b, r);
    return 0;
}
int add(int a, int b)
{
    return a+b;