BSS segment详细解释

最近笔试碰到了BSS segment,刚开始不知道是什么东西,在网上看了一些资料,自我总结一下。

BSS的全称是:Block Started by Symbol。维基百科解释:In computer programming, the name .bss or bss is used by many compilers and linkers for a part of the data segment containing statically-allocated variables represented solely by zero-valued bits initially (i.e., when execution begins). It is often referred to as the "bss section" or "bss segment".

大致意思就是说,BSS是存放程序中未初始化的全局变量的一块静态内存分配区域。

举一个例子:

代码1:

#include<stdio.h>
int a[1000];
void main()
{
...
}

代码2:

#include<stdio.h>
int a[1000]={1,2,3};
void main()
{
.....
}

编译之后,发现代码2的exe程序比代码1的exe程序大。因为代码1中全局变量a没有初始化,所以仍让属于.bss段中,几乎不占用内存。而在代码2中,全局变量被初始化了,处于.data段中,因此占用了很大的空间。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值