gpt4 book ai didi

c++ - 运算符重载: “operator+”必须采用零或一个参数

转载 作者:行者123 更新时间:2023-12-02 10:13:59 25 4
gpt4 key购买 nike

我有一个称为IntMatrix的矩阵类

namespace mtm
{
class IntMatrix
{
private:
int** data;
int col;
int row;
public:
IntMatrix(int row,int col,int num=0);
IntMatrix(const IntMatrix& mat);
//some functions
IntMatrix ::operator+(int num) const;
friend IntMatrix operator+(const int &num, const IntMatrix& matrix);
};
//ctor
IntMatrix::IntMatrix(int row,int col, int num) :data(new int*[row]), col(col), row(row)
{
for (int i = 0; i < col; i++)
{
data[i] = new int[col];
}
for (int i = 0; i < row; i++)
{
for (int j = 0; j < col); j++)
{
data[i][j] = num;
}
}
}
}
我正在尝试重载operator +,以便可以正常工作:
//copy ctor
IntMatrix::IntMatrix(const IntMatrix& mat)
{
data=new int*[mat.row];
for(int i = 0; i < mat.row; i++)
{
data[i]=new int[mat.col];
}
row=mat.row;
col=mat.col;
for(int i=0;i<row;i++)
{
for(int j=0;j<col;j++)
{
data[i][j]=mat.data[i][j];
}
}
}

IntMatrix IntMatrix::operator+(int num) const
{
IntMatrix new_Matrix(*this);
for(int i=0;i<new_Matrix.row;i++)
{
for(int j=0;j<new_Matrix.col;j++)
{
new_Matrix.data[i][j]+=num;
}
}
return new_Matrix;
}
// the function I have problem with:
IntMatrix IntMatrix::operator+(const int &num, const IntMatrix& matrix)
{
return matrix+num;
}

int main()
{
mtm::IntMatrix mat(2,1,3);
mtm::IntMatrix mat2=2+mat;
return 0;
}
无论如何我都会不断收到此错误:
错误:“mtm::IntMatrix mtm::IntMatrix::operator +(const int&,const mtm::IntMatrix&)”必须采用零或一个参数
IntMatrix IntMatrix::operator +(const int&num,const IntMatrix&矩阵)
我试过了:
friend IntMatrix operator+(const int &num, const IntMatrix& matrix);
IntMatrix operator+(const int &num, const IntMatrix& matrix);
IntMatrix operator+(const int &num, const IntMatrix& matrix)const;
IntMatrix operator+(int &num, const IntMatrix& matrix);
IntMatrix operator+( int num, const IntMatrix& matrix);
但是我所有的人都遇到了同样的错误,所以有人知道写它的正确方法是什么吗?

最佳答案

使用friend声明函数不会使而不是成为类的一部分。 int + IntMatrix运算符不是IntMatrix::operator+,而只是operator+

//        wrong - delete this part
// vvvvvvvvvvv
IntMatrix IntMatrix::operator+(const int &num, const IntMatrix& matrix)
{
return matrix+num;
}

关于c++ - 运算符重载: “operator+”必须采用零或一个参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62576373/

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