C++知识总结(内附超详细知识框架图)
创始人
2025-01-16 08:06:03
0

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/117194830
  • C++类和对象(二):https://blog.csdn.net/chenlong_cxy/article/details/117307465
  • C++类和对象(三):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/117629686
  • C++模板进阶: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/126690586
  • C++11右值引用和移动语义:https://blog.csdn.net/chenlong_cxy/article/details/126747523
  • C++11类的新功能:https://blog.csdn.net/chenlong_cxy/article/details/126780535
  • C++11可变参数模板:https://blog.csdn.net/chenlong_cxy/article/details/126807356
  • C++11lambda表达式:https://blog.csdn.net/chenlong_cxy/article/details/126857091
  • C++11包装器:https://blog.csdn.net/chenlong_cxy/article/details/126916023
  • C++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/117885098
  • STL —— string的模拟实现:https://blog.csdn.net/chenlong_cxy/article/details/118932318
  • STL —— vector的介绍及使用:https://blog.csdn.net/chenlong_cxy/article/details/119212349
  • STL —— vector的模拟实现:https://blog.csdn.net/chenlong_cxy/article/details/119254954
  • STL —— list的介绍及使用:https://blog.csdn.net/chenlong_cxy/article/details/119455963
  • STL —— list的模拟实现:https://blog.csdn.net/chenlong_cxy/article/details/119541500
  • STL —— stack和queue的介绍及使用:https://blog.csdn.net/chenlong_cxy/article/details/120077784
  • STL —— stack和queue的模拟实现:https://blog.csdn.net/chenlong_cxy/article/details/120216105
  • STL —— priority_queue的使用及模拟实现:https://blog.csdn.net/chenlong_cxy/article/details/120267391
  • STL —— map/set和multimap/multiset的介绍及使用:https://blog.csdn.net/chenlong_cxy/article/details/121544974
  • STL —— map和set的模拟实现:https://blog.csdn.net/chenlong_cxy/article/details/121763649
  • STL —— unordered_map和unordered_set的介绍及使用:https://blog.csdn.net/chenlong_cxy/article/details/122277348
  • STL —— unordered_map和unordered_set的模拟实现:https://blog.csdn.net/chenlong_cxy/article/details/122508621
  • STL —— bitset的介绍及使用:https://blog.csdn.net/chenlong_cxy/article/details/122508805
  • STL —— bitset的模拟实现:https://blog.csdn.net/chenlong_cxy/article/details/122508813

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

相关内容

热门资讯

透视教程(WpK)wpk辅助挂... 透视教程(WpK)wpk辅助挂(透视)详细辅助细节方法(本来是真的有挂);1、很好的工具软件,可以解...
透视脚本!德州之星有辅助挂,(... 透视脚本!德州之星有辅助挂,(德州)好像有挂(详细辅助黑科技教程)1、德州之星有辅助挂透视辅助简单,...
透视规律(AAPOkER)aa... 透视规律(AAPOkER)aapoker有挂(透视)确实真的有挂(详细辅助德州教程);1、玩家可以在...
透视脚本(wPK)微扑克辅助机... 透视脚本(wPK)微扑克辅助机器人(透视)详细辅助技巧教程(一直是真的有挂)1、很好的工具软件,可以...
透视免费!智星德州菠萝有挂吗,... 透视免费!智星德州菠萝有挂吗,(手机德州)本来是真的有挂(详细辅助详细教程);1、构建自己的智星德州...
透视透视(aaPOKER)aa... 透视透视(aaPOKER)aapoker透视辅助(透视)确实真的有挂(详细辅助解密教程)aapoke...
透视辅助(wpK)微扑克ai辅... 透视辅助(wpK)微扑克ai辅助器苹果版(透视)详细辅助解密教程(原来真的是有挂);1、在微扑克ai...
透视好友房!德州之星有辅助挂,... 透视好友房!德州之星有辅助挂,(德州)好像存在有挂(详细辅助靠谱教程)1、德州之星有辅助挂系统规律教...
透视软件(AAPOKEr)aa... 透视软件(AAPOKEr)aapoker有猫腻(透视)总是是真的有挂(详细辅助AI教程)aapoke...
透视玄学(wpK)wpk提高胜... 透视玄学(wpK)wpk提高胜率(透视)详细辅助AI教程(本来真的是有挂)1、首先打开wpk提高胜率...