Waz*_*ery 20 c struct typedef forward-declaration
编译此.c源文件时出现此错误
/INIT_SOURCE_BUILD/src/names_list.c:7:错误:"名"的存储大小是未知
#include <stdio.h>
#include "list.h"
int main(){
struct List names;
names->size = 3;
struct ListElmt michael;
struct ListElmt john;
struct ListElmt adams;
names->head = michael;
michael->data = 12;
michael->next = john;
john->data = 14;
john->next = adams;
adams->data = 16;
struct ListElmt pointer = List->head;
for(int x = 0; x < 3 ; x++){
printf("Iteration.%d data: %d", x, pointer->data);
pointer->next = pointer->next->next;
}
}
Run Code Online (Sandbox Code Playgroud)
这是这个链表的标题
#ifndef LIST_H
#define LIST_H
#include <stdio.h>
/* Define linked list elements*/
typedef struct _ListElmt{
void *data;
struct _ListElmt *next;
} ListElmt;
/* Define a structure for the list*/
typedef struct _List{
int size;
int (*match)(const void *key1, const void *key2);
void (*destroy)(void *data);
ListElmt *head;
ListElmt *tail;
} List;
void list_init(List *list, void (*destroy)(void *data));
void list_destroy(List *list);
int list_ins_next(List *list, ListElmt *element, const void *data);
int list_rem_next(List *list, ListElmt *element, void **data);
int list_size(const List *list);
ListElmt *list_head(const List *list);
ListElmt *list_tail(const List *list);
int list_is_head(const ListElmt *element);
int list_is_tail(const ListElmt *element);
void *list_data(const ListElmt *element);
ListElmt *list_next(const ListElmt *element);
#endif
Run Code Online (Sandbox Code Playgroud)
nmi*_*els 37
当你typedef一个struct这样的,你不必使用struct声明时:
List names;
Run Code Online (Sandbox Code Playgroud)
代替
struct List names;
Run Code Online (Sandbox Code Playgroud)
它也不是指针,所以names->size应该是names.size.
| 归档时间: |
|
| 查看次数: |
75184 次 |
| 最近记录: |