我认为这是在我的声明中,但我不确定。有一个类“Matrix”,它创建 int 类型的二维数组。该类有几个重载的运算符来对类对象执行算术等。
一项要求是检查矩阵是否具有相同的维度。维度存储为两个私有整数“dx”和“dy”。
因此,为了提高效率,我编写了一个 bool 类型的成员函数,如下所示;
bool confirmArrays(const Matrix& matrix1, const Matrix& matrix2);
是函数头,声明是;
bool Matrix::confirmArrays(const Matrix& matrix1, const Matrix& matrix2)
{
if (matrix1.dx == matrix2.dx && matrix1.dy == matrix2.dy)
{
// continue with operation
return true;
} else {
// hault operation, alert user
cout << "these matrices are of different dimensions!" << endl;
return false;
}
}
但是当我confirmArrays
从另一个成员函数中调用时,我得到了这个错误;
使用未声明的标识符 confirmArrays
像这样调用函数;
// matrix multiplication, overloaded * operator
Matrix operator * (const Matrix& matrix1, const Matrix& matrix2)
{
Matrix product(matrix1.dx, matrix2.dy);
if ( confirmArrays(matrix1, matrix2) )
{
for (int i=0; i<product.dx; ++i) {
for (int j=0; j<product.dy; ++j) {
for (int k=0; k<matrix1.dy; ++k) {
product.p[i][j] += matrix1.p[i][k] * matrix2.p[k][j];
}
}
}
return product;
} else {
// perform this when matrices are not of same dimensions
}
}