0

我认为这是在我的声明中,但我不确定。有一个类“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
    }
}
4

2 回答 2

1

operator*未在Matrix. 您实际上已经定义了一个全局运算符。你需要

Matrix Matrix::operator * (const Matrix& matrix1, const Matrix& matrix2)
{
   ...
}

然后应该没问题。注意,如果已经编译,您将收到链接器“未定义对运算符 Matrix::operator* 的引用”错误,因为该错误未定义。

于 2012-10-03T03:32:38.500 回答
0

bool 函数只需要支持算术函数。其中一些函数可以是成员重载运算符,有些可以是朋友。这里的技巧是将 bool 函数也定义为友元,使其可以被成员直接函数和友元函数访问,同时保留访问私有成员数据的能力。

friend bool confirmArrays(const Matrix& matrix1, const Matrix& matrix2);

于 2012-10-03T16:18:28.117 回答