共享库和静态库之间的技术差异?

发布于 2024-11-18 11:13:03 字数 72 浏览 2 评论 0原文

静态库和共享库的组合方式有什么区别吗?例如,共享库中的代码是否可以在编译/链接时而不是在运行时加载到可执行文件中,就像静态库一样?

Are there any differences between the way static and shared libraries are put together? For example, could code from a shared library be loaded into an executable at compile/link-time rather than at runtime, just like a static library?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

森林很绿却致人迷途 2024-11-25 11:13:03

静态库和共享库的组合方式有什么区别吗?

绝对地;它们是非常不同的动物。一个主要区别是,使用存档库时,您仅链接您使用的内容,但使用共享库时,您可以获得整个内容。

可以在编译/链接时而不是运行时将共享库中的代码加载到可执行文件中

不容易,但是工具 确实存在。

就像静态库一样

我不会称其为“就像静态库一样”——其机制和最终结果非常不同。

Are there any differences between the way static and shared libraries are put together?

Absolutely; they are very different animals. One major difference is that with archive library, you link in only what you use, but with shared library you get the entire thing.

could code from a shared library be loaded into an executable at compile/link-time rather than at runtime

Not easily, but tools do exist.

just like a static library

I wouldn't call it "just like a static library" -- the mechanics and the end result are very different.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文