→ james732:原來如此 受教了 05/28 10:23
推 dcleft:推,傳值應會比傳vector好一些 05/28 12:06
推 dcleft:不過請問一下 "回傳 Matrix (傳值)" 是指傳double[][] ? 05/28 14:14
→ dcleft:還是傳什麼? 05/28 14:15
→ mantour:寫成一個class,然後把delete寫在destructor內 05/28 20:50
我想請問大大,這matrix class實做是要怎樣才會自己free呢?
我想成這樣:
typedef class Matrix {
public :
int n, m; // size of column and row
double **element;
Matrix (int n=1, int m =1)
{/*allocate ememory of element */ } ;
~Matrix()
{/*free memory of element*/};
mul(Matrix B);
operator+(Matrix B);
:
:
} matrix;
/transpose is not a member function of class Matrix/
matrix transpose(matrix A)
若是這樣想不出來那裡建解構啊。。。
還請大大詳細解釋 謝謝。
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 218.167.74.111
※ 編輯: Carbontube 來自: 218.167.74.111 (05/28 22:52)