摘要: 1.回调函数: 将函数作为指针传参给其他函数使用,实现解耦作用,将各个功能分开。 举例,不含参数的回调函数: #include"stdio.h" int Callback() { printf("Hello, this is Callback "); return 0; } int Handle(i 阅读全文
posted @ 2025-11-25 22:38 小智001 阅读(7) 评论(0) 推荐(0)