Я проверил и не нашел никаких материалов, которые могут мне помочь, поэтому мне пришлось спросить.это код:
list.h:
typedef struct List_t *List;
list.c:
#include "list.h"
#include <stdlib.h>
#include <stdio.h>
typedef struct Item_t
{
struct Item_t* next;
ListElement data;
}*Item;
typedef struct List_t
{
Item head;
Item iterator;
CopyListElement copyFunc;
FreeListElement freeFunc;
};
list_example_test.c:
#include "list.h"
#include <stdlib.h>
#include <stdio.h>
ListElement copyA(ListElement a)
{
return a;
}
void destroyA(ListElement a)
{
}
bool testListCreate();
bool testListCopy()
{
List list1=listCreate(copyA,destroyA);
listInsertFirst(list1,(void*)6);
listInsertFirst(list1,(void*)2);
listInsertFirst(list1,(void*)1);
List list2=listCopy(list1);
listClear(list1);
if(list2->head==NULL) //here is the error!!
{
return false;
}
return true;
}
последний кусок кода должен проверять, работает ли функция listCopy ().компилятор распознает имя List, и когда я набираю «list2->», он даже предлагает автозаполнить поля List (в этом случае я выбрал «list2-> head». что является причиной проблемы и как ее исправить? спасибо!