- 论坛徽章:
- 0
|
C99中有这么一段话
- For an identifier declared with the storage-class specifier extern in a scope in which a
- prior declaration of that identifier is visible, if the prior declaration specifies internal or
- external linkage, the linkage of the identifier at the later declaration is the same as the
- linkage specified at the prior declaration. If no prior declaration is visible, or [b]if the prior
- declaration specifies no linkage, then the identifier has external linkage.[/b]
复制代码
那么,如果有如下代码
- int main(void)
- {
- int a; //1st
- extern int a; //2nd
- printf("%d\n", a);
- }
复制代码
1st后,a是no linkage, 根据标准,2nd之后a是不是就是external linkage? 那为什么我用nm在符号表里看不到a?
下面是我的运行结果
- [57 alx@local ~]cat test4.c
- int main(void)
- {
- int a; //1st
- extern int a; //2nd
- printf("%d\n", a);
- }
- [57 alx@local ~]gcc test4.c -c -Wall
- test4.c: In function `main':
- test4.c:5: warning: implicit declaration of function `printf'
- test4.c:6: warning: control reaches end of non-void function
- [57 alx@local ~]nm -f s test4.o
- Symbols from test4.o:
- Name Value Class Type Size Line Section
- main |0000000000000000| T | FUNC|000000000000001c| |.text
- printf | | U | NOTYPE| | |*UND*
- [57 alx@local ~]
复制代码 |
|