当前位置:首页 » 《随便一记》 » 正文

C++知识总结(内附超详细知识框架图)

23 人参与  2022年10月18日 08:09  分类 : 《随便一记》  评论

点击全文阅读


C++知识总结

由于在学习C++的同时博主也在学习Linux系统编程、Linux网络编程以及数据库,所以从开始学习C++到现在结束已经有一年多时间了。

C++是博主学习的第一个面向对象的语言,在学习过程中也是逐渐体会到了面向对象编程的种种好处,但C++相比C语言来说其语法会更加复杂,特别是继承和多态的语法(ಥ _ ಥ),以及C++11中新增的很多特性,让C++的语法变得更加复杂。

下面博主将各大模块的思维导图罗列出来了,并在每张思维导图下面放上了博主的相关博客,对某一知识点有疑问的博友可以跳转阅读对应的博客。

其实本来是罗列在一张思维导图上的,但由于C++知识体系过于庞大,导致思维导图太大无法插入到博客当中,于是博主就将这些模块重新拆分为多个思维导图了¯\_(ツ)_/¯                  

一、C++基础

在这里插入图片描述
下面是博主的相关博客:

C++入门基础:https://blog.csdn.net/chenlong_cxy/article/details/116990901

二、类和对象

在这里插入图片描述
下面是博主的相关博客:

C++类和对象(一):https://blog.csdn.net/chenlong_cxy/article/details/117194830C++类和对象(二):https://blog.csdn.net/chenlong_cxy/article/details/117307465C++类和对象(三):https://blog.csdn.net/chenlong_cxy/article/details/117530132

三、C/C++内存管理

在这里插入图片描述
下面是博主的相关博客:

C/C++内存管理:https://blog.csdn.net/chenlong_cxy/article/details/117622502

四、模板

在这里插入图片描述
下面是博主的相关博客:

C++模板初阶:https://blog.csdn.net/chenlong_cxy/article/details/117629686C++模板进阶:https://blog.csdn.net/chenlong_cxy/article/details/120284967

五、C++的IO流

在这里插入图片描述
下面是博主的相关博客:

C++的IO流:https://blog.csdn.net/chenlong_cxy/article/details/120338757

六、继承

在这里插入图片描述
下面是博主的相关博客:

C++继承:https://blog.csdn.net/chenlong_cxy/article/details/120444215

七、多态

在这里插入图片描述
下面是博主的相关博客:

C++多态:https://blog.csdn.net/chenlong_cxy/article/details/120796570

八、C++11

在这里插入图片描述
下面是博主的相关博客:

C++11入门基础:https://blog.csdn.net/chenlong_cxy/article/details/126690586C++11右值引用和移动语义:https://blog.csdn.net/chenlong_cxy/article/details/126747523C++11类的新功能:https://blog.csdn.net/chenlong_cxy/article/details/126780535C++11可变参数模板:https://blog.csdn.net/chenlong_cxy/article/details/126807356C++11lambda表达式:https://blog.csdn.net/chenlong_cxy/article/details/126857091C++11包装器:https://blog.csdn.net/chenlong_cxy/article/details/126916023C++11线程库:https://blog.csdn.net/chenlong_cxy/article/details/126976346

九、异常

在这里插入图片描述
下面是博主的相关博客:

C++异常:https://blog.csdn.net/chenlong_cxy/article/details/127028110

十、智能指针

在这里插入图片描述
下面是博主的相关博客:

C++智能指针:https://blog.csdn.net/chenlong_cxy/article/details/127100528

十一、特殊类设计

在这里插入图片描述
下面是博主的相关博客:

特殊类设计:https://blog.csdn.net/chenlong_cxy/article/details/126603597

十二、C++的类型转换

在这里插入图片描述
下面是博主的相关博客:

C++的类型转换:https://blog.csdn.net/chenlong_cxy/article/details/127144522

十三、STL

在这里插入图片描述
下面是博主的相关博客:

STL —— string的介绍及使用:https://blog.csdn.net/chenlong_cxy/article/details/117885098STL —— string的模拟实现:https://blog.csdn.net/chenlong_cxy/article/details/118932318STL —— vector的介绍及使用:https://blog.csdn.net/chenlong_cxy/article/details/119212349STL —— vector的模拟实现:https://blog.csdn.net/chenlong_cxy/article/details/119541500STL —— list的介绍及使用:https://blog.csdn.net/chenlong_cxy/article/details/119455963STL —— list的模拟实现:https://blog.csdn.net/chenlong_cxy/article/details/119541500STL —— stack和queue的介绍及使用:https://blog.csdn.net/chenlong_cxy/article/details/120077784STL —— stack和queue的模拟实现:https://blog.csdn.net/chenlong_cxy/article/details/120216105STL —— priority_queue的使用及模拟实现:https://blog.csdn.net/chenlong_cxy/article/details/120267391STL —— map/set和multimap/multiset的介绍及使用:https://blog.csdn.net/chenlong_cxy/article/details/121544974STL —— map和set的模拟实现:https://blog.csdn.net/chenlong_cxy/article/details/121763649STL —— unordered_map和unordered_set的介绍及使用:https://blog.csdn.net/chenlong_cxy/article/details/122277348STL —— unordered_map和unordered_set的模拟实现:https://blog.csdn.net/chenlong_cxy/article/details/122508621STL —— bitset的介绍及使用:https://blog.csdn.net/chenlong_cxy/article/details/122508805STL —— bitset的模拟实现:https://blog.csdn.net/chenlong_cxy/article/details/122508813

后面的路途还很遥远,咱们继续互勉吧!


点击全文阅读


本文链接:http://zhangshiyu.com/post/45308.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1