The community reviewed whether to reopen this question 2 years ago and left it closed:
更新这个问题, 以便用 < a href="/posts/10782554/edit>编辑此文章 来解答事实和引用。
我想知道在组织我的工程时, C++ 的最佳做法是什么。 我读到过, 我应该把所有源文件 (. cpp) 放在 src 文件夹和信头文件 (.h) 中, 应该放在包含文件夹中。 这是它应该的样子吗, 还是我应该把信头文件放到源文件文件夹中?
这是我的文件夹树结构
- Project
|
+--- src (.cpp)
|
+--- include (.h) ????
|
+--- test (cpp unit test)
|
+--- doc (docs)