随笔分类 - Modern c++
记录现代c++的一些典型特性
摘要:c++11新特性实战(二):智能指针 c++11添加了新的智能指针,unique_ptr、shared_ptr和weak_ptr,同时也将auto_ptr置为废弃(deprecated)。 但是在实际的使用过程中,很多人都会有这样的问题: 不知道三种智能指针的具体使用场景 无脑只使用shared_p
阅读全文
摘要:c++11 新特性实战 (一) c++11多线程操作 线程 thread int main() { thread t1(Test1); t1.join(); thread t2(Test2); t2.join(); thread t3 = t1; thread t4(t1); thread t5 =
阅读全文
摘要:C++20 Overview Many of these descriptions and examples come from various resources (see Acknowledgements section), summarized in my own words. C++20 i
阅读全文
摘要:C++14 Overview Many of these descriptions and examples come from various resources (see Acknowledgements section), summarized in my own words. C++14 i
阅读全文
摘要:C++17 Overview Many of these descriptions and examples come from various resources (see Acknowledgements section), summarized in my own words. C++17 i
阅读全文
摘要:C++11 Overview Many of these descriptions and examples come from various resources (see Acknowledgements section), summarized in my own words. C++11 i
阅读全文
摘要:Effect modern c++观后感 说实话简单看了一遍,没看太懂。也给忘记了~
阅读全文