我試圖在一個類中爲動態數組重載運算符<<
,爲cout
。 我的類和成員函數如下:爲一個類中的動態數組重載cout操作符
class Matrix{
private:
int rows;
int columns;
double* matrix;
public:
Matrix();
explicit Matrix(int N);
Matrix(int M, int N);
void setValue(int M, int N, double value);
double getValue(int M, int N);
bool isValid() const;
int getRows();
int getColumns();
~Matrix();
friend ostream& operator<<(ostream &out, const Matrix&matrix1);
};
Matrix::Matrix(){
matrix = NULL;
}
Matrix::Matrix(int N){
matrix = new double[N * N];
rows = N;
columns = N;
for(int i = 0; i < N; i++){
for(int j = 0; j < N; j++){
if(i==j)
matrix[i * N + j] = 1;
else
matrix[i * N + j] = 0;
}
}
}
Matrix::Matrix(int M, int N){
matrix = new double[M * N];
rows = M;
columns = N;
for(int i = 0; i < M; i++){
for(int j = 0; j < N; j++)
matrix[i * N + j] = 0;
}
}
Matrix::~Matrix(){
delete [] matrix;
}
void Matrix::setValue(int M, int N, double value){
matrix[M * columns + N] = value;
}
double Matrix::getValue(int M, int N){
return matrix[M * columns + N];
}
bool Matrix::isValid() const{
if(matrix==NULL)
return false;
else
return true;
}
int Matrix::getRows(){
return rows;
}
int Matrix::getColumns(){
return columns;
}
我試圖實現< <操作如下:
ostream& operator<<(ostream &out, const Matrix&matrix1){
Matrix mat1;
int C = mat1.getColumns();
int R = mat1.getRows();
for(int i = 0; i < R; i++){
for(int j = 0; j < C; j++)
out << mat1.getValue(i,j) << "\t";
out << endl;
}
return out;
}
,並從一個函數調用它:
void test(){
Matrix mat1(3,4);
cout << mat1 << endl;
}
但是這根本不打印任何東西。看起來像過載函數沒有得到任何值C
和R
,但我可能是錯的。任何人有一些想法?
這是假設的形式
a11 a12 a13 . . .
a21 a22 a23 . . .
. . . . . .
. . . . . .
. . . . . .
「看起來重載函數沒有獲得任何C和R的值,但我可能是錯誤的」 - 您是否設置了斷點並檢查C和R的值? – chris 2013-03-12 21:37:34
您仍然在創建不必要的局部變量,就像您之前對構造函數所做的一樣。 – molbdnilo 2013-03-12 21:41:04
不,我沒有,但謝謝你的提示! – Ole1991 2013-03-12 21:43:35