图像的 bss 部分是什么?
我正在尝试了解 PE 文件格式,其中有很多部分。 bss 部分是什么?写入该部分的流体和数据可以随时被覆盖吗?这是加载的二进制文件在内存中的存储位置吗?
I am trying to understand PE file formats and there are many sections. What is the bss section? Is that fluid and data written to that section can be overwritten anytime? Is that a storage location in memory of the loaded binary?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在汇编程序中,bss 部分用于定义不需要初始化为任何特定值的内存空间。我想它没有改变。
In assembler, the bss section was used to define memory space that didn't need to be initialized to any particular value. I imagine it hasn't changed.