C++类(六)——C++11的初始化列表、左值引用和右值引用、shared_ptr、weak_ptr、enable_shared_from_this(CRTP)、 unique_ptr、智能指针的坑
C++11的初始化列表基本概念:https://www.cnblogs.com/LuckCoder/p/8467656.htmlclassA{public:explicitA(intvalue):m_value(value){}private:intm_value;};staticvoidnewVersionConstruct(){intavector[]={1,2,3};std::vectorb