[問題] 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