最近笔试碰到了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段中,因此占用了很大的空间。