摘要: linux kernel中采用的数据结构的风格 struct list_head { struct list_head *next, *prev; }; 通过使用指针管理数据,可以避免产生多个数据副本,也就是说只存在一个instance。从而使数据结构更加纯粹。 在linux的编程风格中不推荐使用t 阅读全文
posted @ 2021-01-19 15:39 panrui 阅读(90) 评论(0) 推荐(0) 编辑