C++智能指针
- 智能指针本质上是一个模板类,一般使用的这个类的对象,而不是指针
- 智能指针体现在内存释放问题上,用智能指针管理new的对象,将不在需要手动delete
智能指针的分类
-
shared_ptr get()函数:返回数据的指针的引用 use_count() : 返回管理对象的智能指针个数 swap() : 交换两个智能指针管理的对象 reset() : 重置智能指针对象 针对部分场景需要自己手动添加删除器去释放对象内存 -
weak_ptr 弱引用指针,不会累计计数 weak_ptr只能通过shared_ptr或者weak_ptr来构造 主要应用场景:为了解决shared_ptr循环引用内存导致无法释放问题 不能使用*访问,可以使用->取值 通过成员函数lock()获取shared_ptr对象然后在访问数据 -
unique_ptr 禁止拷贝和赋值 独占型 任何时候unique_ptr操作管理对象,永远只有一个有效 可以通过move()函数转交所有权 reset函数结合release函数移交所有权
以下对于三种类型分别举例:
#include <iostream>
#include <string>
#include <memory>
using namespace std;
class MyPerson {
public:
MyPerson(int age) :age(age)
{
cout << "MyPerson构造函数被调用!" << endl;
}
MyPerson()
{
cout << "MyPerson无参构造函数被调用" << endl;
}
~MyPerson()
{
cout << "MyPerson析构函数被调用!" << endl;
}
void print()
{
cout << "MyPerson的年龄:" << age << endl;
}
private:
int age;
};
void printPersonData(shared_ptr<MyPerson> pMyPerson)
{
pMyPerson->print();
cout << "管理MyPerson对象的指针数:" << pMyPerson.use_count() << endl;
}
int main()
{
shared_ptr<int> pInt(new int(111));
cout << *pInt << endl;
cout << "使用get()获取数据:" << *pInt.get() << endl;
cout << "管理对象的指针数:" << pInt.use_count() << endl;
shared_ptr<int> pInt2(pInt);
cout << "管理对象的指针数:" << pInt.use_count() << endl;
cout << "管理对象的指针数:" << pInt2.use_count() << endl;
shared_ptr<int> pInt3;
if (!pInt3)
{
cout << "空智能指针对象" << endl;
}
pInt3 = pInt2;
cout << "管理对象的指针数:" << pInt3.use_count() << endl;
shared_ptr<int> aa(new int(11));
shared_ptr<int> bb(new int(22));
aa.swap(bb);
cout << "交换后" << endl;
cout << "aa=" << *aa << "\tbb=" << *bb << endl;
bb.reset(new int(123));
cout << "*bb=" << *bb << endl;
shared_ptr<MyPerson> pMyPerson(new MyPerson(10));
pMyPerson->print();
cout << "管理MyPerson对象的指针数:" << pMyPerson.use_count() << endl;
printPersonData(pMyPerson);
system("pause");
return 0;
}
结果分析: 1、使用shared_ptr智能指针管理自定义对象可以使用->访问对象的成员函数(shared_ptr智能指针类内部实现了重定义operator->) 2、使用shared_ptr智能指针管理的对象会自动释放内存,无需手动释放(针对于new创建内存) 3、使用use_count()返回管理对象的智能指针个数
111
使用get()获取数据:111
管理对象的指针数:1
管理对象的指针数:2
管理对象的指针数:2
空智能指针对象
管理对象的指针数:3
交换后
aa=22 bb=11
*bb=123
MyPerson构造函数被调用!
MyPerson的年龄:10
管理MyPerson对象的指针数:1
MyPerson的年龄:10
管理MyPerson对象的指针数:2
针对如下场景
不支持创建连续内存
shared_ptr<MyPerson> pMyPerson2(new MyPerson(10)[4]);
如果想要实现上面常见则自己需要在创建智能指针对象类时添加删除器(自己手动写释放内存过程)`
shared_ptr<MyPerson> pMyPerson2(new MyPerson[4], [](MyPerson* array) {delete[] array; });
#include <iostream>
#include <string>
#include <memory>
using namespace std;
class MyPerson {
public:
MyPerson(int age) :age(age)
{
cout << "MyPerson构造函数被调用!" << endl;
}
MyPerson()
{
cout << "MyPerson无参构造函数被调用" << endl;
}
~MyPerson()
{
cout << "MyPerson析构函数被调用!" << endl;
}
void print()
{
cout << "MyPerson的年龄:" << age << endl;
}
private:
int age;
};
int main()
{
shared_ptr<MyPerson> pMyPerson(new MyPerson(10));
pMyPerson->print();
cout << "管理MyPerson对象的指针数:" << pMyPerson.use_count() << endl;
weak_ptr< MyPerson> pWeakPtr(pMyPerson);
cout << "管理MyPerson对象的指针数:" << pMyPerson.use_count() << endl;
pWeakPtr.lock().get()->print();
system("pause");
return 0;
}
#include <iostream>
#include <string>
#include <memory>
using namespace std;
class MyPerson {
public:
MyPerson(int age) :age(age)
{
cout << "MyPerson构造函数被调用!" << endl;
}
MyPerson()
{
cout << "MyPerson无参构造函数被调用" << endl;
}
~MyPerson()
{
cout << "MyPerson析构函数被调用!" << endl;
}
void print()
{
cout << "MyPerson的年龄:" << age << endl;
}
private:
int age;
};
int main()
{
unique_ptr<MyPerson> pMyPerson(new MyPerson(111));
unique_ptr<MyPerson> pMyPerson3;
pMyPerson3 = move(pMyPerson);
pMyPerson3->print();
pMyPerson.reset(new MyPerson(20));
unique_ptr<MyPerson> pMyPerson4;
pMyPerson4.reset(pMyPerson3.release());
system("pause");
return 0;
}
|