首页 > 代码库 > C之结构体
C之结构体
#include<stdio.h> #include<stdlib.h> void study(){ printf("好好学习,天天向上 \n"); } //定义结构体 //结构体中不能定义函数,但是可以定义函数指针 struct student{ int age; char sex; void(*study)(); }; main(){ struct student st = {20,‘f‘, study}; printf("%d\n", st.age); //printf("结构体长度为%d\n", sizeof(st)); //访问结构体的函数指针 st.study(); struct student* stp = &st; //引用结构体中的这个函数指针 ->左边必须是结构体的一级指针 stp->study(); }
C之结构体
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。