[问题] std::shared_ptr std::vector

楼主: shihyu (shihyu)   2017-09-28 22:40:26
开发平台(Platform): (Ex: Win10, Linux, ...)
Linux
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
g++
#include<iostream>
#include<vector>
#include <memory>
using namespace std;
int main()
{
// M□NM□N matrix (assuming int type elements) initialized with all
values as KK
const int N = 2;
const int M = 4;
const int K = 99;
std::vector<std::vector<int>>* p = new std::vector<std::vector<int>>(M,
std::vector<int>(N, K));
cout << p[0].size() << endl;
cout << p[0][0].size() << endl;
cout << p->at(0)[0] << endl;
delete p;
// cout << p->at(0)[0] << endl;
return 0;
}
我不想用delete 手动回收new 内存! 想使用shared_ptr
请问要怎么把vector 指标用shared_ptr 封装一起自动回收?
shared_ptr<std::vector<std::vector<int> > > p1(new
std::vector<std::vector<int>>(M, std::vector<int>(N, 0)));
我这样包装对嘛? 有办法验证内存有回收掉?
谢谢
作者: james732 (好人超)   2017-09-28 22:47:00
要不要顺便学习用auto XD
作者: steve1012 (steve)   2017-09-28 23:07:00
为啥不宣告物件就好?
楼主: shihyu (shihyu)   2017-09-28 23:11:00
请问宣告物件是怎样? 对C++ 不熟XD
作者: steve1012 (steve)   2017-09-28 23:19:00
赶着出门 让其他人回你 xD
楼主: shihyu (shihyu)   2017-09-28 23:39:00
OK! 可以先请问一下问题就是 shared_ptr 怎么取得里面封装的vector 的row and col sizehttp://0rz.tw/vJBQ3p1[0].size() & p1[0][0].size() 编译会错误
作者: steve1012 (steve)   2017-09-29 00:02:00
你要的是 *p1.size()吧vector 跟阵列是不一样的 你是不是搞混了你可以 (*p1)[0]不过你也可以 stdvector<int> newVec(3,1)之类这是宣告物件
楼主: shihyu (shihyu)   2017-09-29 00:12:00
(*p1)[0] 会编译失败...我主要想知道 shared_ptr 包起来怎么取得里面vector col 大小cout << (*p1)[0].size() << endl; // 这样可以取得colsteve1012 用shared_ptr 包物件从建构跟解构去验证回收?
作者: dannypsnl (秦书)   2017-09-29 01:46:00
sp->at(0).at(0)不要用[ ]运算子欸不对阿,我用运算子也行
作者: steve1012 (steve)   2017-09-29 03:44:00
刚在忙 不过 lph大回你了你有问题再推个文吧
作者: Killercat (杀人猫™)   2017-09-29 06:23:00
你可能要先搞清楚shared_ptr的原理...shared_ptr的自动回收不是靠GC机制 是靠物件的scope来判断reference count然后在rc=0的时候自爆的

Links booklink

Contact Us: admin [ a t ] ucptt.com