我有一个矩阵类,并且具有以下构造函数:
template<class T>
Matrix<T>::Matrix(unsigned rows, unsigned cols) :
rows(rows), cols(cols) {
index = 0;
data_ = new T[rows * cols];
}
template<class T>
Matrix<T>::~Matrix() {
delete[] data_;
}
当我计算矩阵的逆时,我想释放名为的临时变量的内存a
:
template<class T>
Matrix<T> Matrix<T>::inverse() {
unsigned i, j, k;
Matrix<T> a(2 * rows, 2 * rows);
....
return tmp;
}
我以为这个变量会在函数结束时被销毁,但是当我测试时:
for (int i = 0; i < 3; i++) {
Matrix<double> m(5, 5);
m << 5, 2, 4, 5, 6, 1, 3, 1, 2, 5, 2, 5, 2, 7, 2, 9, 2, 1, 0.1, 0.43, 1, 0, 0, 0, 1;
m.inverse();
std::cout << m << std::endl;
}
在第一个循环中a
用零初始化,但下一步 的初始值a
是之前的值,所以a(k+1)=a_endvalues(k)
. 为什么会这样?