摘要: /* */ // 函数指针类型 typedef uint8_t (*myfunction_type)(uint8_t); uint8_t myfunction1(uint8_t param) { ... } myfunction_type myfunction2 = myfunction1; // 阅读全文
posted @ 2021-06-09 10:59 Bryce-Hu 阅读(66) 评论(0) 推荐(0)