2

我正在做一个需要使用模板完成的作业:它是一个矩阵类。

其中之一告诉我重载 . operator ()(int r, int c);,这样我就可以obj(a, b);使用obj(a, b)=100;.

我的类的模板是template<class T, int C, int R>; 然后我在公共范围内的类中创建:

T& operator()(int r, int c);//LINE 16

实现很简单。

我尝试了两种方式:

template <class T>
T& Matrix::operator()(int r, int c){
    return matrixData[r][c];
}

template <class T, int C, int R>
T& Matrix::operator()(int r, int c){ 
    return matrixData[r][c];
}

在最后一个我得到错误告诉我:

16: Error: expected type-specifier before '(' token

第 16 行在上面有一个注释错误:

no 'T& Matrix<T, C, R>::operator()(int, int)' member function declared in class 'Matrix<T, C, R>'
4

2 回答 2

3

课程是template<class T, int C, int R> class Matrix {...}

以下对我有用:

#include <iostream>

template<typename T, int R, int C>
class Matrix {
  T data[R][C];
public:
  T& operator()(int r, int c);
};

template <typename T, int R, int C>
T& Matrix<T, R, C>::operator()(int r, int c) {
  return data[r][c];
}

int main() {
  Matrix<int, 3, 4> m;
  m(0, 1) = 42;
  std::cout << m(0, 1) << std::endl;
}
于 2012-11-26T16:56:11.953 回答
1

如果我理解正确,您将缺少以下类型Matrix

template <class T>
T& Matrix<T>::operator()(int r, int c){
    return matrixData[r][c];
}

template <class T, int C, int R>
T& Matrix<T>::operator()(int r, int c){ 
    return matrixData[r][c];
}
于 2012-11-26T16:56:58.140 回答