# C++ 学习笔记 记录自己学习C++的笔记。 # 在线访问 # 学习路线 对于新手小白要如何学习 C++ 呢?这里总结了一些学习资源。 ## 学习书籍 按顺序看这几本书《C++ Primer 第5版》-> 《Effective C++》 ->《Effective stl》 -> 《STL源码剖析》-> 《深度探索C++对象模型》(选看) ## 学习网站 ### 基础 * [learncpp.com](https://www.learncpp.com/) * [cplusplus](http://www.cplusplus.com>) * [CPlusPlusThings](https://github.com/Light-City/CPlusPlusThings) ### 进阶 * [modern-cpp-tutorial](https://github.com/changkun/modern-cpp-tutorial) * [CppTemplateTutorial](https://github.com/wuye9036/CppTemplateTutorial) ### 项目实战 * [MyTinySTL](https://github.com/Alinshans/MyTinySTL) * [俄罗斯方块](https://github.com/taylorconor/tinytetris) * [计算器](https://github.com/microsoft/calculator)