Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 C++ 中是否有可能包含彼此的 2 个 DLL,因为它们每个都使用彼此的类(嗯,这是我的计划),这可能吗?
是的,这是可能的。只有您需要将这些 dll 编译为多步骤过程。要链接 dll,您需要来自其他 dll 的 lib 文件。这意味着您需要:
另请注意,DLL 通常具有 C 接口。您可以导出类,但准备好为使用的每个版本的编译器设置一组 dll。