简单来说,就是这个结构体有很多成员变量,其中有一个成员变量是链表指针结构。
示例如下:
typedef struct _aaa { int val; struct _aaa* next;} LISTNODE;typedef struct _kernel { int a; char b[32]; LISTNODE p;} KERNEL_LIST;