c/c++ 数组的智能指针 使用
2021-06-16 09:06
标签:image 元素 clu 技术分享 指针 oid alt memory std github完整代码 c/c++ 数组的智能指针 使用 标签:image 元素 clu 技术分享 指针 oid alt memory std 原文地址:https://www.cnblogs.com/xiaoshiwang/p/9726511.html数组的智能指针 使用
数组的智能指针的限制:
1,unique_ptr的数组智能指针,没有*和->操作,但支持下标操作[]
2,shared_ptr的数组智能指针,有*和->操作,但不支持下标操作[],只能通过get()去访问数组的元素。
3,shared_ptr的数组智能指针,必须要自定义deleter
小例子
#include
c/c++ 学习互助QQ群:877684253
本人微信:xiaoshitou5854
上一篇:C语言进阶--DAY3
下一篇:Java思维题