摘要: 1.void类型指针简介 void类型的指针又被称为泛型指针,通用型指针 void类型的指针:指针指向的内存地址中的数据的类型未知 其他所有类型的指针都可以转换为void类型的指针,而且不需要强制类型转换(编译器会隐式/自动类型转换) void类型的指针也可以转换为任意类型的指针,需要强制类型转换( 阅读全文
posted @ 2023-09-22 23:14 Guanjie255 阅读(519) 评论(0) 推荐(0) 编辑
摘要: 函数指针的概念 顾名思义,函数指针就是指向函数的指针,该指针的值是函数的入口。下面的代码时函数指针的一个基本实例。 #include <stdio.h> int max_(int a, int b); int max1_(int (*func_p)(int, int), int a, int b); 阅读全文
posted @ 2023-09-22 23:13 Guanjie255 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 也许一个不兼容的指针可以访问变量 #include <stdio.h> #include <stdlib.h> typedef struct father { int age; char* name; } father; typedef struct student { int age; doubl 阅读全文
posted @ 2023-09-22 23:13 Guanjie255 阅读(15) 评论(0) 推荐(0) 编辑