任务
- 实现矩阵基类Matrix,以一维数组存储数据
- 实现行存储矩阵RowMatrix,以二维数组存储数据,支持从vector导入数据构造矩阵
- 实现矩阵加法、乘法、混合运算,输入以普通指针的形式,结果以unique_ptr形式返回
遇到坑
- 混合运算需要调用到加法以及乘法函数获得中间结果,但unique_ptr无法值拷贝,如何临时存储返回值?
使用std::move函数
std::unique_ptr<RowMatrix<T>> *temp1 = std::move( Multiply( matrixA, matrixB));
std::unique_ptr<RowMatrix<T>> *temp2 = std::move( Add( matrixA, matrixB));
2.测试时出现内存泄漏,原因有二,一是delete的时候单纯只是直接delete指针并不是delete[]掉数组;二是delete二维数组时,只通过一次for循环delete[]掉第二维度的数组,第一维度的数组忘记delete。