您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇“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]); }
#include <stdio.h> struct student { char *name; int age; void printInfo(void) { printf("name = %s, age = %d\n", name, age); } }; int main(int argc, char**argv) { struct student students[] = { {"zhangsan", 10}, {"lisi", 26}, }; students[0].printInfo(); students[1].printInfo(); }
#include <stdio.h> class student { public: char *name; int age; void printInfo(void) { printf("name = %s, age = %d\n", 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 \n", ex.a, ex.b, r); return 0; } int add(int a, int b) { return a+b;
以上就是关于“C语言中怎么在结构体内定义函数”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。