请教一个关于函数指针的C语言基础的问题
时间:10-02
整理:3721RD
点击:
#include <stdio.h>
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); 这条语句不应该会报错吗?想不通,有没有前辈帮忙分析分析?
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); 这条语句不应该会报错吗?想不通,有没有前辈帮忙分析分析?
“what the problem”作为参数传递的就是这个字符数组的首地址,所以没毛病
用的函数指针把,参数不会变化
学习一下,指针的知识都忘的差不多了
pfUartSend pf_uart_send; 此处你用函数指针定义了一个变量
如果改成pfUartSend *pf_uart_send;
下面赋值应为 *pf_uart_send = Uart_SendBuf;
执行应为pf_uart_send("what the problem", 16);
指针的指针,还是一个普通指针而已,用函数指针可以实现C的面向对象,具体的用法你可以多看看C primer plus,里面讲的很详细
嗯,主要还是不明白为什么 下面这两种调用都可以。
(*pf_uart_send)("what the problem", 16);
pf_uart_send("what the problem", 16);
这pf_uart_send和(*pf_uart_send)这2中写法意思是一样的,新旧编译器的方法不同,后面的是老方法。
神马东东!