摘要:
拷贝构造函数 拷贝构造是在传入一个类的实例作为参数创建新的类的时候触发的 class ctest { public: ctest(ctest& t) { cout << "ctest(ctest& t)" << endl; } }; 也可以为参数增加const修饰防止修改。触发拷贝构造的情况一般有两 阅读全文
摘要:
https://en.cppreference.com/w/cpp/utility/move std::move 获得右值引用 Defined in header <utility> template< class T > typename std::remove_reference<T>::typ 阅读全文
摘要:
https://en.cppreference.com/w/cpp/language/reference 引用声明 声明一个变量名字作为引用,也就是,是一个已经存在的对象或函数的别名 语法 & attr(optional) declarator && attr(optional) declarato 阅读全文