C++智能指针的使用和仿写(auto_ptr、unique_ptr、shared_ptr、weak_ptr)(详解)
本博客主要记录以下内容:1.auto_ptr(包括使用讲解和仿写)2.unique_ptr(包括使用讲解和仿写)3.shared_ptr(包括使用讲解和仿写)4.weak_ptr(包括使用讲解和仿写)一、auto_ptr1.auto_ptr的使用和讲解使用示例及讲解:intmain(){int*p=newint(10);//auto_ptra_ptr1=p;//不允许让普通指针为实参,进行隐式构造