Effective Modern C++ Item 21 Posted on 2024-03-23 | In C++ 记录了我对Item21 Prefer std::make_unique and std::make_shared to direct use of new的学习笔记 Read more »
Effective Modern C++ Item 20 Posted on 2024-03-21 | In C++ 记录了我对Item20 Use std::weak_ptr for std::shared_ptr-like pointers that can dangle的学习笔记 Read more »
Effective Modern C++ Item 19 Posted on 2024-03-20 | In C++ 记录了我对Item19 Use std::shared_ptr for shared-ownership resource management的学习笔记 Read more »
Effective Modern C++ Item 18 Posted on 2024-03-19 | In C++ 记录了我对Item18 Use std::unique_ptr for exclusive-ownership resource management的学习笔记 Read more »
Effective Modern C++ Item 14 Posted on 2024-03-15 | In C++ 记录了我对Item14 Declare functions noexcept if they won’t emit exceptions的学习笔记 Read more »
Effective Modern C++ Item 6 Posted on 2024-03-05 | In C++ 记录了我对Item6 Use the explicitly typed initializer idiom when auto deduces undesired types的学习笔记 Read more »
Effective Modern C++ Item 5 Posted on 2024-03-04 | In C++ 记录了我对Item5 Prefer auto to explicit type declarations的学习笔记 Read more »
Effective Modern C++ Item 4 Posted on 2024-03-02 | In C++ 记录了我对Item4 Know how to view deduced types的学习笔记 Read more »
Effective Modern C++ Item 3 Posted on 2024-03-02 | In C++ 记录了我对Item3 Understand decltype的学习笔记 Read more »
Effective Modern C++ Item 2 Posted on 2024-02-29 | In C++ 记录了我对Item2 Understand auto type deduction的学习笔记 Read more »