Chinaunix首页 | 论坛 | 博客
  • 博客访问: 40946
  • 博文数量: 14
  • 博客积分: 630
  • 博客等级: 上士
  • 技术积分: 130
  • 用 户 组: 普通用户
  • 注册时间: 2009-02-05 10:59
文章分类

全部博文(14)

文章存档

2011年(1)

2009年(13)

我的朋友
最近访客

分类: LINUX

2009-03-16 18:46:06


写代码时,老是不太确定静态存储区的初始值是不是为零,现在把这网上搜到放进来,以后应该印象很深了。。
总结起来就是:
未初始化的静态存储对象一律清零。

c99 6.7.8 Initialization:

10 If an object that has automatic storage duration is not initialized explicitly, its value is
indeterminate. If an object that has static storage duration is not initialized explicitly,
then:
— if it has pointer type, it is initialized to a null pointer;
— if it has arithmetic type, it is initialized to (positive or unsigned) zero;
— if it is an aggregate, every member is initialized (recursively) according to these rules;
— if it is a union, the first named member is initialized (recursively) according to these
rules.
阅读(957) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~