- 论坛徽章:
- 0
|
在mian.cpp中我定义了一个结构体
struct node
{
int a1;
int a2;
struct node *b1;
struct node **b2;
}
int main()
{
............
struct node c[10];
...........
test(struct node *c);
..........
}
在另个文件中sample.cpp
void test(struct node *c)
{
c[0].a1 = 0;
c[0].a2 = 0;
.......
}
此时编译出现错误, 在sample.cpp认不出struct node, 说node undefined.
我在sample.cpp加了对struct node的声明,
extern struct node
但还是不对
是不是要在sample.cpp文件开始在struct node重新定义
struct node
{
int a1;
int a2;
struct node *b1;
struct node **b2;
}
void test(struct node *c)
{
c[0].a1 = 0;
c[0].a2 = 0;
.......
} |
|