70,037
社区成员
发帖
与我相关
我的任务
分享
struct list_head {
struct list_head *next, *prev;
};
1 typedef struct application_info
2 {
3 uint32_t app_id;
4 uint32_t up_flow;
5 uint32_t down_flow;
6 struct list_head app_info_head; //这里为什么不用 指针 而是用一个结构体? 不直接struct list_head *app_info_head
7 }app_info;
