C++那些事
Go to file
Light-City 4f149eec72 update
2019-12-12 16:09:55 +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:09:55 +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 2019-12-12 16:09:55 +08:00
stl update 2019-12-08 21:09:59 +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:09:55 +08:00
README.md update 2019-12-12 16:09:55 +08:00
README.md~ update 2019-12-12 16:09:55 +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
}
  • =default,=delete

    如果你自行定义了一个ctor,那么编译器就不会给你一个default ctor 如果强制加上=default,就可以重新获得并使用default ctor.

  • Alias(化名)Template(template typedef)

alias.cpp

template_template.cpp

(1) 序列式容器包括array(C++2.0新引入),vector,deque,list,forward_list(C++2.0新引入)

(2) 关联式容器包括set/multiset,map/multimap

(3) 无序容器(C++2.0新引入,更换原先hash_xxx为unordered_xxx)包括unordered_map/unordered_multimap,unordered_set/unordered_multiset

学习资料: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.代码运行

  • 代码环境

Ubuntu 18.04

  • 工具

CLion gcc/g++

6.关于作者:

个人公众号: