完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
#include
typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned long uint32_t; typedef signed char int8_t; typedef signed short int16_t; typedef signed long int32_t; typedef void (*pfUartSend)(uint8_t *pbuf, uint16_t len); pfUartSend pf_uart_send; void Uart_SendBuf(uint8_t* pbuf , uint16_t len) { while(len != 0) { putchar(*pbuf); pbuf++; len--; } putchar('n'); } void main(void) { pf_uart_send = Uart_SendBuf; (*pf_uart_send)("what the problem", 16); pf_uart_send("what the problem", 16); } 在上面这段代码中,两种调用都可以实现相同的打印结果。但是问题就来了,按照我以前的认知,pf_uart_send("what the problem", 16); 这条语句不应该会报错吗?想不通,有没有前辈帮忙分析分析? |
|
相关推荐
7个回答
|
|
“what the problem”作为参数传递的就是这个字符数组的首地址,所以没毛病
|
|
|
|
用的函数指针把,参数不会变化
|
|
|
|
学习一下,指针的知识都忘的差不多了
|
|
|
|
本帖最后由 蹲坑_逗蛆蛆 于 2017-8-19 12:07 编辑
pfUartSend pf_uart_send; 此处你用函数指针定义了一个变量 如果改成pfUartSend *pf_uart_send; 下面赋值应为 *pf_uart_send = Uart_SendBuf; 执行应为pf_uart_send("what the problem", 16); 指针的指针,还是一个普通指针而已,用函数指针可以实现C的面向对象,具体的用法你可以多看看C primer plus,里面讲的很详细 |
|
|
|
蹲坑_逗蛆蛆 发表于 2017-8-19 12:05 嗯,主要还是不明白为什么 下面这两种调用都可以。 (*pf_uart_send)("what the problem", 16); pf_uart_send("what the problem", 16); |
|
|
|
这pf_uart_send和(*pf_uart_send)这2中写法意思是一样的,新旧编译器的方法不同,后面的是老方法。 |
|
|
|
神马东东!
|
|
|
|
你正在撰写答案
如果你是对答案或其他答案精选点评或询问,请使用“评论”功能。
嵌入式学习-飞凌嵌入式ElfBoard ELF 1板卡-mfgtools烧录流程之烧写原理
321 浏览 0 评论
请问SPH0641LU4H这款麦克风如何在不使用I2S的情况下,单纯通过GPIO来进行驱动且正常读取数据呢
325 浏览 0 评论
296 浏览 0 评论
《DNESP32S3使用指南-IDF版_V1.6》第三十六章 照相机实验
313 浏览 0 评论
STM32模拟eeprom只有起始地址0x8001000正常其他地址都会造成单片机运行不正常怎么回事
276 浏览 1 评论
【youyeetoo X1 windows 开发板体验】少儿AI智能STEAM积木平台
12080 浏览 31 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-31 06:50 , Processed in 0.651293 second(s), Total 53, Slave 46 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号