提供函数指针时取消引用指向不完整类型的指针

Dereferencing pointer to incomplete type when providing function pointer

当我尝试 运行 以下代码时,我得到了指向不完整类型错误的取消引用指针。我已经检查了有关此错误的其他几个问题,据我所知,这不是由于缺少或额外的结构关键字造成的,我相信指针类型是正确的,但我可能弄错了。

代码可能还有其他问题,因为我只是在学习 C,我很乐意尝试自己解决这些问题我似乎无法找到不完整类型错误的问题。

Development/C/AI/test/src/test.c: In function ‘compare’:
Development/C/AI/test/src/test.c:10:19: error: dereferencing pointer to incomplete type ‘lrgraph_node {aka struct lrgraph_node}’
  if ( strcmp(other->dataType, current->dataType == 0) ) {

test.c

#include "lrGraph.h"
#include <string.h>

int data = 1;
char *dataType = "int";
lrgraph_edge *connected[] = {};
unsigned numEdges = 0;

int compare( lrgraph_node *other, lrgraph_node *current ) {
    if ( strcmp(other->dataType, current->dataType == 0) ) {
        return (int)other->data - (int)current->data;
    }
    return -1;
}

int main() {
    lrgraph_node *nodeA = lrgraph_createNode((void*)&data, dataType, &compare, connected, numEdges);
    lrgraph_printVersion();
}

lrGraph.c

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "lrGraph.h"

struct lrgraph_edge {
    float weight;
    lrgraph_node *nodeA;
    lrgraph_node *nodeB;
};

struct lrgraph_node {
    //data can be of any type
    void *data;
    //string to see if this node can be compared to another node based on data type
    char *dataType;
    int numEdges;
    //comparator function which compares another node to this node
    int (*compare)(lrgraph_node *other, lrgraph_node *current);
    //array of connected edges
    lrgraph_edge *connected[];
};

void lrgraph_printVersion() {
    fprintf(stdout, "\nlrgraph version 0.01b\n");
}


lrgraph_node* lrgraph_createNode(void *data, char *dataType, int (*compare)(lrgraph_node* other, lrgraph_node* current), lrgraph_edge *connected[], unsigned numEdges) {
    //allocate enough memory for the struct plus each pointer in the array of edges - 
    lrgraph_node *node = malloc(sizeof(lrgraph_node) + numEdges * sizeof(lrgraph_edge));
    if (NULL != node) {
        node->data = data;
        node->dataType = strdup(dataType);
        node->compare = compare;
        node->numEdges = numEdges;
        //initialize each edge in the array
        for( unsigned i=0; i < numEdges; i++) {
            node->connected[i] = connected[i];
        }
    }
    return node;
}

lrGraph.h

#ifndef LRGRAPH_H
#define LRGRAPH_H

typedef struct lrgraph_node lrgraph_node;

typedef struct lrgraph_edge lrgraph_edge;

lrgraph_node* lrgraph_createNode(void *data, char *dataType, int (*compare)(lrgraph_node *other, lrgraph_node *current), lrgraph_edge *connected[], unsigned numEdges);

void lrgraph_printVersion();

#endif /*LRGRAPH_H*/

"Incomplete type" 表示编译器发现您正在尝试使用结构类型,但该结构没有定义。

如果您只使用指向结构的指针(实际上这就是抽象数据类型在 C 中的实现方式),这很好,但是如果您想要取消引用这样的指针,则结构定义必须可见。

test.c中只有lrGraph.h的内容可见(即typedef struct lrgraph_node lrgraph_node;),但实际的struct lrgraph_node { ... };定义只存在于lrGraph.c中。

可能的解决方案:将 struct lrgraph_node { ... } 定义移动到 header 中。 (或者,将 compare 的定义放入 lrGraph.c)。