欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 新闻 > 资讯 > C语言——结构体指针

C语言——结构体指针

2024/11/14 0:13:02 来源:https://blog.csdn.net/weixin_64593595/article/details/139921286  浏览:    关键词:C语言——结构体指针

 观察下述代码:

typedef struct student {char* name;	//可以存char *a = “hellow world”; 可以当一个字符串 他的地址是第一个字母hint age;	int (*init)(void);//一个指向无参数、返回类型为int的函数的指针。后面需要用到就成员名点方法struct student* classmate;//一个指向student结构体的指针
}student, * pstudent;//结构体变量名,结构体指针//void (*init)(void);
int GPIOKeyInit(void)
{printf("KAL_GPIOKkeyInit();\r\n");return 0;
}int main()
{student zhangshan = {"zhangshan",10,GPIOKeyInit,NULL};student lili = {"lili",15,GPIOKeyInit,NULL};zhangshan.classmate = &lili;lili.classmate = &zhangshan;zhangshan.init();printf("%d\r\n", zhangshan.classmate->age);return 0;
}

运行结果:KAL_GPIOKkeyInit(); 15

typedef struct lcd_operation {int type;void (*draw_logo)(void);
}lcd_operation, * plcd_operation;void LCD_Show(void)
{printf("LCD_Init  2\r\n");
}void RGB_Show(void)
{printf("RGB_Init\r\n");
}int get_lcd_type(void)
{return 0;
}lcd_operation xxx_lcd[] = {{0,LCD_Show},{1,RGB_Show}
};plcd_operation get_lcd(void)
{int type = get_lcd_type();return &xxx_lcd;//默认指向成员首地址 也就是xxx_lcd[0]
}int main()
{plcd_operation lcd;//利用结构体指针 定义的成员lcd = get_lcd();//当然要用结构体指针定义的方法来赋值//因为结构体方法中返回了 结构体成员的地址 所以可以访问到方法(lcd+1)->draw_logo();lcd->draw_logo();printf("%d\r\n",lcd->type);printf("%d\r\n",(lcd+1)->type);xxx_lcd[0].draw_logo();//利用结构体变量定义的一个成员#ifdef LCD_TYPE_ALCD_Show();
#else RGB_Show();
#endifreturn 0;
}

运行结果: RGB_Init LCD_Init 2 0 1 LCD_Init 2 RGB_Init

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com