免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1377 | 回复: 0
打印 上一主题 下一主题

[C] 关于C99定义的external linkage [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-07-09 11:49 |只看该作者 |倒序浏览
C99中有这么一段话


  1. For an identifier declared with the storage-class specifier extern in a scope in which a
  2. prior declaration of that identifier is visible, if the prior declaration specifies internal or
  3. external linkage, the linkage of the identifier at the later declaration is the same as the
  4. linkage specified at the prior declaration. If no prior declaration is visible, or [b]if the prior
  5. declaration specifies no linkage, then the identifier has external linkage.[/b]
复制代码


那么,如果有如下代码

  1. int main(void)
  2. {
  3.      int a;  //1st
  4.      extern int a; //2nd
  5.      printf("%d\n", a);
  6. }

复制代码

1st后,a是no linkage, 根据标准,2nd之后a是不是就是external linkage? 那为什么我用nm在符号表里看不到a?

下面是我的运行结果

  1. [57 alx@local ~]cat test4.c
  2. int main(void)
  3. {
  4.      int a;  //1st
  5.      extern int a; //2nd
  6.      printf("%d\n", a);
  7. }

  8. [57 alx@local ~]gcc test4.c -c -Wall
  9. test4.c: In function `main':
  10. test4.c:5: warning: implicit declaration of function `printf'
  11. test4.c:6: warning: control reaches end of non-void function
  12. [57 alx@local ~]nm -f s test4.o


  13. Symbols from test4.o:

  14. Name                  Value           Class        Type         Size             Line  Section

  15. main                |0000000000000000|   T  |              FUNC|000000000000001c|     |.text
  16. printf              |                |   U  |            NOTYPE|                |     |*UND*
  17. [57 alx@local ~]
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP