C++那些事
Go to file
Light-City d23bb01f90 update
2020-01-08 21:50:12 +08:00
basic_content update 2019-11-12 22:10:06 +08:00
c++2.0 update 2019-11-05 17:31:14 +08:00
codingStyleIdioms update 2019-12-12 16:12:34 +08:00
concurrency_v1 update 2019-11-05 16:56:07 +08:00
effective_c++ update 2019-11-05 16:56:07 +08:00
img update 2019-11-05 16:59:40 +08:00
modern_C++_30 update 2020-01-07 11:02:09 +08:00
stl update 2019-12-08 21:09:59 +08:00
tool/output update 2020-01-08 21:50:12 +08:00
..gitignore.un~ update 2019-11-05 16:56:07 +08:00
.com.sh.un~ update 2019-11-05 16:56:07 +08:00
.gitignore update 2019-11-05 16:56:07 +08:00
.gitignore~ update 2019-11-05 16:56:07 +08:00
.README.md.un~ update 2019-12-12 16:12:34 +08:00
README.md update 2020-01-08 21:50:12 +08:00

C++那些事

0.项目概要

学习C++内容,包括理论、源码、实践、课程代码、项目等

1.基础部分


2.进阶部分

2.1 effective_c++

正在更新...

2.2 C++2.0新特性

vector<list<int> > //ok in each C++ version
vector<list<int>> // before c++ 11 error error: >> should be > > within a nested template argument list,c++11后可以正常通过
for(decl:col) {
    statement
}

学习资料:https://www.bilibili.com/video/av51863195?from=search&seid=3610634846288253061

2.3 C++并发编程v1

学习资料:https://chenxiaowei.gitbook.io/cpp_concurrency_in_action/

2.4 STL源码剖析

stl源码剖析gcc4.9.1

3.学习课程

3.1 极客时间《现代C++实战30讲》

4.拓展部分

4.1 C++惯用法

你最喜欢的c++编程风格惯用法是什么?

4.2 一些问题

5.自己写的工具

对吴老师的代码进行了修改,点击此处直通代码

输入:

map<int, int> mp{
            {1, 1},
            {2, 4},
            {3, 9}};
    cout << mp << endl;

输出结果显示:

{ 1 => 1, 2 => 4, 3 => 9 }

感谢吴老师的代码,原代码:

https://github.com/adah1972/output_container/blob/master/output_container.h

6.代码运行

  • 代码环境

Ubuntu 18.04

  • 工具

CLion gcc/g++

7.关于作者

个人公众号: