随笔分类 -  Modern c++

记录现代c++的一些典型特性
摘要:c++11新特性实战(二):智能指针 c++11添加了新的智能指针,unique_ptr、shared_ptr和weak_ptr,同时也将auto_ptr置为废弃(deprecated)。 但是在实际的使用过程中,很多人都会有这样的问题: 不知道三种智能指针的具体使用场景 无脑只使用shared_p 阅读全文
posted @ 2021-02-04 16:50 鬼谷子com 阅读(528) 评论(0) 推荐(0) 编辑
摘要: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 = 阅读全文
posted @ 2020-09-29 12:15 鬼谷子com 阅读(1277) 评论(0) 推荐(2) 编辑
摘要:C++20 Overview Many of these descriptions and examples come from various resources (see Acknowledgements section), summarized in my own words. C++20 i 阅读全文
posted @ 2020-06-02 15:17 鬼谷子com 阅读(2076) 评论(0) 推荐(0) 编辑
摘要:C++14 Overview Many of these descriptions and examples come from various resources (see Acknowledgements section), summarized in my own words. C++14 i 阅读全文
posted @ 2020-06-02 15:11 鬼谷子com 阅读(922) 评论(0) 推荐(0) 编辑
摘要:C++17 Overview Many of these descriptions and examples come from various resources (see Acknowledgements section), summarized in my own words. C++17 i 阅读全文
posted @ 2020-06-02 15:10 鬼谷子com 阅读(763) 评论(0) 推荐(0) 编辑
摘要:C++11 Overview Many of these descriptions and examples come from various resources (see Acknowledgements section), summarized in my own words. C++11 i 阅读全文
posted @ 2020-06-02 15:08 鬼谷子com 阅读(226) 评论(0) 推荐(0) 编辑
摘要:Effect modern c++观后感 说实话简单看了一遍,没看太懂。也给忘记了~ 阅读全文
posted @ 2020-05-18 16:18 鬼谷子com 阅读(211) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示