只是想弄清楚爲什麼我得到這個錯誤?C中的多個定義
/import/ravel/1/cjmu065/cs1921/ass2/src/ImageList.c:21: multiple definition of `insert_at_tail'
img.o:/import/ravel/1/cjmu065/cs1921/ass2/src/ImageList.c:21: first defined here
ImageList.o: In function `printList':
/import/ravel/1/cjmu065/cs1921/ass2/src/ImageList.c:43: multiple definition of `printList'
img.o:/import/ravel/1/cjmu065/cs1921/ass2/src/ImageList.c:43: first defined here
ImageList.o: In function `make_empty_list':
/import/ravel/1/cjmu065/cs1921/ass2/src/ImageList.c:57: multiple definition of `make_empty_list'
我用來設計這些函數名稱的頭文件和後續實現c文件的唯一文件。
頭文件包括以下聲明:
void printList(ImageList *list);
ImageList *insert_at_tail(ImageList *list, char *name, QuadTree qtree, int dimen, int element);
ImageList *make_empty_list(void);
雖然實現了這一點:
ImageList *insert_at_tail(ImageList *list, char *name, QuadTree qtree, int dimen, int element){
node_t *new;
new = malloc(sizeof(*new));
assert(list!=NULL && new!=NULL);
new->data.dim = dimen;
new->data.num = element;
new->data.filename = malloc(strlen(name)*sizeof(char));
strcpy(new->data.filename, name);
new->data.QuadTree = qtree;
new->next = NULL;
if(list->tail==NULL){
list->head = list->tail = new;
} else {
list->tail->next = new;
list->tail = new;
}
return list;
}
// print a list (space-separated, on one line)
void printList(ImageList *list)
{
node_t *cur;
for (cur = list->head; cur != NULL; cur = cur->next) {
printf("%d",cur->data.num);
printf(" [%2d]",cur->data.dim);
printf(" %s",cur->data.filename);
}
putchar('\n');
}
// Make an empty list of images
ImageList *make_empty_list(void)
{
ImageList *list;
list = malloc(sizeof(*list));
assert(list!=NULL);
list->head = list->tail = NULL;
return list;
}
我知道,這樣做的原因通常是在頭文件中定義函數以及但似乎我沒有。我已經瀏覽了實際使用這些函數的文件,但沒有額外的函數定義。兩個文件的參數和返回值也是相同的,所以我有點失落。任何幫助表示讚賞。
CFLAGS=-Wall -g
img : img.o QuadTree.o ImageList.o
gcc -o img img.o QuadTree.o ImageList.o
img.o : img.c QuadTree.h ImageList.h
gcc $(CFLAGS) -c img.c
QuadTree.o : QuadTree.c QuadTree.h
gcc $(CFLAGS) -c QuadTree.c
ImageList.o : ImageList.c ImageList.h
gcc $(CFLAGS) -c ImageList.c
clean :
rm -f img img.o QuadTree.o ImageList.o core
我加了我的Makefile,是這個問題出現嗎?我也對所有頭文件都有保護,所以我仍然非常困惑,聲明和定義有什麼問題嗎?
你使用了安全衛士嗎? – gsamaras 2014-10-31 04:21:00
看起來你有兩個目標文件('ImageList.o'和'img.o'),它們都定義了這些函數? – 2014-10-31 04:21:56
嘗試更改頭文件定義以指定「extern」的定義 – DrC 2014-10-31 04:23:03