An open API service indexing awesome lists of open source software.

https://github.com/solerho/cpp-primer-plus-6e-notes

C++ Primer Plus 学习笔记
https://github.com/solerho/cpp-primer-plus-6e-notes

c-plus-plus cpp11 cxx11

Last synced: about 1 year ago
JSON representation

C++ Primer Plus 学习笔记

Awesome Lists containing this project

README

          

📔 C++ Primer Plus (第六版) 学习笔记

### 调试环境
- ***OS***:`CentOS Linux release 8.0.1905 (Core)`
- ***IDE***:` Visual Studio Code` ————> remote development ssh连接云服务器开发
- cmake version : 3.18.2
- make version : 4.2.1
- gcc version : 8.4.1

> 使用cmakelists.txt的原因:多文件管理时,不方便g++编译多个文件。所以直接使用该方式可以节省更多的调试和后续的使用。

> **笔记内容点击 `「」`中的 📖 即可。**
>
> ✅ --- 已完成
>
> ⬜ --- 未完成或进行中

|章(Chapter)|标题(Title)|笔记(Notes)|复习题(Review)|编程练习题(Practice)|
|:--:|:--:|:--:|:--:|:--:|
|01|C++概述|「[📖](./Chapter01/README.md) 」✅|「NA」|「NA」|
|02|开始学习C++|「[📖](./Chapter02/README.md) 」✅|「[📖](./Chapter02/复习题.md)」✅|「[📖](./Chapter02/Codes/) 」✅|
|03|处理数据|「[📖](./Chapter03/README.md) 」✅|「[📖]()」⬜|「[📖]()」⬜|
|04|复合类型|「[📖](./Chapter04/README.md) 」✅|「[📖]()」⬜|「[📖]()」⬜|
|05|循环和关系表达式|「[📖](./Chapter05/README.md) 」✅|「[📖]()」⬜|「[📖]()」⬜|
|06|分支语句和逻辑运算符|「[📖](./Chapter06/README.md) 」✅|「[📖]()」⬜|「[📖]()」⬜|
|07|函数 ——— C++的编程模块|「[📖](./Chapter07/README.md) 」✅|「[📖]()」⬜|「[📖]()」⬜|
|08|函数探索|「[📖](./Chapter08/README.md) 」✅|「[📖]()」⬜|「[📖]()」⬜|
|09|内存模型和名称空间|「[📖](./Chapter09/README.md)」✅|「[📖]()」⬜|「[📖]()」⬜|
|10|对象和类|「[📖](./Chapter10/README.md)」✅|「[📖]()」⬜|「[📖]()」⬜|
|11|使用类|「[📖](./Chapter11/README.md)」✅|「[📖]()」⬜|「[📖]()」⬜|
|12|类和动态内存分配|「[📖](./Chapter12/README.md)」✅|「[📖 ]()」⬜|「[📖]()」⬜|
|13|类继承|「[📖](./Chapter13/README.md) 」✅|「[📖]()」⬜|「[📖]()」⬜|
|14|C++中的代码复用|「[📖](./Chapter14/README.md) 」✅|「[📖]()」⬜|「[📖]()」⬜|
|15|友元、异常和其他|「[📖](./Chapter15/README.md) 」✅|「[📖]()」⬜|「[📖]()」⬜|
|16|string类和标准模板库|「[📖](./Chapter16/README.md) 」✅|「[📖]()」⬜|「[📖]()」⬜|
|17|输入、输出和文件|「[📖](./Chapter17/README.md) 」✅|「[📖]()」⬜|「[📖]()」⬜|
|18|探讨C++新标准|「[📖](./Chapter18/README.md) 」✅|「[📖]()」⬜|「[📖]()」⬜|