有哪些技术可以限制 C++ 项目中的编译依赖关系?
在 C++ 项目中,编译依赖性会使软件项目难以维护.限制模块内和模块间依赖关系的一些最佳实践是什么?
In a C++ project, compilation dependencies can make a software project difficult to maintain. What are some of the best practices for limiting dependencies, both within a module and across modules?
推荐答案
- 转发声明
- 抽象接口
- Pimpl 成语
相关文章