我晕。你是不是在看链表啊? 你太着急了。先仔细看看指针的知识! struct Node { struct Node* next; }; struct Node* p = (struct Node*)malloc(sizeof(struct Node)); p->next = NULL; 就是访问结构体里面的元素