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.
我在想是否可以单独编写程序然后在单个程序中使用它 我的想法是制作一个用于存储配置文件的程序和另一个用于游戏逻辑的程序, 然后将它(或使用它)组合成程序
Profile.cpp --------- bridge.cpp -------------game.cpp
桥将用于访问(和显示)这两个 cpp
是的,C++ 支持单独编译,因此您可以在单独的源文件中分段编写程序。您编译这些文件并将它们链接在一起以创建可执行文件。命令行编译器可以为您完成:
bcc bridge.cpp profile.cpp game.cpp