系统编程中的工作区是什么?
我在学习链接时读过它。当程序要执行时,它首先由链接器链接。当时它被放在工作区。现在我想知道这个工作区域是什么?
i have read it when i was learning linking. When the program is going to be executed it was first linked by linker. At that time it was put in work area. Now i want to now what is this work area?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如今,静态链接是作为编译过程的一部分完成的。
编译->汇编->链接=可执行文件。
通常,当今天在桌面上加载程序时,它会被放入虚拟内存中,然后执行任何动态链接。
Static linking is done as part of the compilation process today.
Compile->Assemble->Link = Executable.
Typically when a program is loaded today on the desktop, it is placed into virtual memory and any dynamic linking is performed then.