- 论坛徽章:
- 0
|
我在两个文件里分别定义了名称相同的两种结构体,但是它可以运行正常,不知道为啥,但同一文件里定义就不行,难道链接的时候不管吗?,thanks
gcc test.c test2.c
test.c
- #include <stdio.h>
- #include <string.h>
- #include <string.h>
- typedef struct tstnode
- {
- int rightid;
- } TSTNODE;
- void test(void);
- int main(void) {
- test();
- test2();
- }
- void test(void) {
- TSTNODE a={1};
- printf("rightid is %d\n",a.rightid);
- }
复制代码
test2.c
- #include <stdio.h>
- #include <stdlib.h>
- typedef struct tstnode
- {
- char *leftid;
- } TSTNODE;
- void test2(void) {
- TSTNODE a={"abc"};
- printf("leftid is %s\n",a.leftid);
- }
复制代码
[ 本帖最后由 wwdwwd 于 2009-11-21 13:57 编辑 ] |
|