gpt4 book ai didi

c++ - 重载 * 运算符的多个操作数

转载 作者:行者123 更新时间:2023-11-30 02:23:36 25 4
gpt4 key购买 nike

我想重载 * 运算符有两个目的:

第一个目的:

m4 * 3.5; //m4 is a matrix object

上面用这个函数就可以了,这里实现绝对没问题

Matrix operator *(const double n)

但是,当我尝试相反时,即

3.5 * m4;

我收到一条错误消息,指出没有匹配的函数。所以我为这个特殊情况做了这个功能

Matrix operator *(const double n, Matrix &obj)
{
for(unsigned int i = 0; i < rows; i++ )
{
for(unsigned int j = 0; j < cols; j++)
{
obj[i][j] = obj[i][j] * n;
}

}

return *this;
}

现在,我得到了错误:

error: ‘Matrix Matrix::operator*(double, Matrix&)’ must take either zero or one argument Matrix operator *(const double n, Matrix &obj);

error: no match for ‘operator*’ (operand types are ‘double’ and ‘Matrix’)
cout << 3.5 * m4 << endl;

我不确定如何解决操作数的问题!

不幸的是,我不能使用 BLAS、Eigen 等。这项任务要求我们努力解决这个矩阵废话。

最佳答案

你已经使 Matrix operator *(const double n, Matrix &obj) 成为 Matrix 的成员,这意味着它有一个隐式的第一个参数给 this。您需要做的是将其设为非成员函数。

另请注意,它不应修改操作数,因此您应该通过 const 引用传递 Matrix:

Matrix operator *(const double n, const Matrix &obj);

对于您的第一个重载也可以这样说,它应该是一个 const 成员函数

Matrix operator *(const double n) const;

或者非成员(member):

Matrix operator *(const Matrix& mat, const double n);

关于c++ - 重载 * 运算符的多个操作数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46021571/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com