5

我正在尝试用 C++(使用模板)编写代码以在 2 个矩阵之间添加。

我在 .h 文件中有以下代码。

#ifndef __MATRIX_H__
#define __MATRIX_H__

//***************************
//         matrix
//***************************

template <class T, int rows, int cols> class matrix {
public:
    T mat[rows][cols];
    matrix();
    matrix(T _mat[rows][cols]);
    matrix operator+(const matrix& b);
};

template <class T, int rows, int cols> matrix <T,rows,cols> :: matrix (T _mat[rows][cols]){
    for (int i=0; i<rows; i++){
        for (int j=0; j<cols; j++){
            mat[i][j] = _mat[i][j];
        }
    }
}

template <class T, int rows, int cols> matrix <T,rows,cols> :: matrix (){
    for (int i=0; i<rows; i++){
        for (int j=0; j<cols; j++){
            mat[i][j] = 0;
        }
    }
}

template <class T, int rows, int cols> matrix <T,rows,cols> matrix <T,rows,cols>::operator+(const matrix<T, rows, cols>& b){
    matrix<T, rows, cols> tmp;
    for (int i=0; i<rows; i++){
        for (int j=0; j<cols; j++){
            tmp[i][j] = this->mat[i][j] + b.mat[i][j];
        }
    }
    return tmp;
}



#endif

我的 .cpp :

#include "tar5_matrix.h"
int main(){

    int mat1[2][2] = {1,2,3,4};
    int mat2[2][2] = {5,6,7,8};
    matrix<int, 2, 2> C;
    matrix<int, 2, 2> A = mat1;
    matrix<int, 2, 2> B = mat2;
    C = A+B;
    return 0;
}

编译时,我收到以下错误:

1>c:\users\karin\desktop\lior\study\cpp\cpp_project\cpp_project\tar5_matrix.h(36): error C2676: binary '[' : 'matrix' 未定义此运算符或转换为类型预定义运算符可接受

请指教

4

2 回答 2

6

该行:

tmp[i][j] = this->mat[i][j] + b.mat[i][j]; 

应该:

tmp.mat[i][j] = this->mat[i][j] + b.mat[i][j]; 

您正在尝试tmp直接索引变量,它的类型是matrix<T, rows, cols>. 因此,它抱怨matrix该类不提供operator[].

于 2012-05-19T17:05:19.633 回答
1

由于tmp是 type matrix<T, rows, cols>,因此以下内容:

tmp[i][j] = ...

matrix::operator[]您尚未定义的用途。你可能是想说

tmp.mat[i][j] = ...
于 2012-05-19T17:05:49.440 回答