C++ .dll 文件的具体用途以及如何创建它们

发布于 2024-11-10 12:56:32 字数 149 浏览 2 评论 0原文

我一直在研究 dll。 dll到底有什么用途...它们可以用来存储图形吗?我猜使用它们的主要方法是存储代码......或者我错了?你如何创建dll(带有源代码和图形?如果可能的话)。 任何帮助将不胜感激。
我正在使用 Code::Blocks ide 和 mingW 编译器。

i have been doing some looking at dlls. what exactly are all the uses of dlls...can they be used to store graphics? im guessing the main way to use them is to store code...or am i wrong? how do you go about creating dlls(with source and graphics? if possible).
any help would be appreciated.
i am using Code::Blocks ide with mingW compiler.

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

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

发布评论

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

评论(2

明明#如月 2024-11-17 12:56:32

dll - 动态链接库,指的是微软平台上的共享库

您应该检查这个应该澄清您对 dll 是什么的基本有缺陷的理解..

dll - dynamic link library, refers to a shared library on microsoft platforms.

You should check this out and that should clarify your basically flawed understanding of what an dll is..

西瑶 2024-11-17 12:56:32

你是对的,DLL 是用来保存执行代码的。

但是,它们可用于嵌入图像,使用 Visual C++ 中的资源,但我认为 Code::Blocks 不可能做到这一点。

要使用 Code::Blocks 创建 DLL,只需使用模板“动态链接库”创建一个新项目即可。

You're right, DLLs are meant for holding execution code.

However they can be used to embed images, using resources in Visual C++ but I don't think it's possible with Code::Blocks.

To create a DLL with Code::Blocks, simply create a new project with template "Dynamic Link Library".

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