嗨,下面有一个函数,每次编译时它都会给我一个错误:“错误:从不兼容的类型'struct nodeInfo'分配给'struct nodeInfo'”,我不知道如何修复它,因为我声明了一个相同类型的数组。欢迎任何帮助。
编辑:netTopo[id]=curNode;行导致问题。
struct nodeInfo *getTopology(FILE * file)
{
int totLinks = 0, digit = 0;
fscanf(file, "%d", &nodeCount);
struct nodeInfo netTopo[nodeCount];
// How many links does node have
for (int id = 0; id < nodeCount; id++)
{
struct nodeInfo
{
int n;
int *links;
} curNode;
curNode.n = id;
fscanf(file, "%d", &totLinks);
for (int i = 0; i < totLinks; i++)
{
curNode.links[totLinks];
fscanf(file, "%d", &digit);
curNode.links[i] = digit;
}
netTopo[id] = curNode;
}
return netTopo;
}
最佳答案
您定义了两次nodeInfo
。
而不是
struct nodeInfo {
int n;
int *links;
} curNode;
尝试
struct nodeInfo curNode;
你的第一个声明没有显示,所以我猜你只是想让它们相同。
关于c - C中的结构数组类型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19329306/