gpt4 book ai didi

c++ - 重载 operator= 不能通过赋值编译

转载 作者:行者123 更新时间:2023-11-30 05:46:27 26 4
gpt4 key购买 nike

github repo with code尝试通过重载某些操作来编写 Matrix 类代码。
当我尝试用这个笔画编译时,一切都出错了

result = (l_mtx + r_mtx);

我从 g++ 得到错误:
g++ -g3 -std=c++11 -Wall -o matrix matrix_class.h matrix.cpp

matrix.cpp:在函数“int main()”中:
matrix.cpp:36:12: 错误:没有匹配函数来调用‘Matrix::Matrix(Matrix)’

result = (l_mtx + r_mtx);   

然后是这个功能的几个候选人,我不太明白。
我认为有复制构造函数和几个构造函数,但这不是我认为应该在那个笔划中调用的 operator=。

matrix_class.h:73:5: 注意:Matrix::Matrix(Matrix&) [with type = double]
(没有已知的参数 1 从‘Matrix’到‘Matrix&’的转换)

matrix_class.h:46:5: 注意:Matrix::Matrix(int, int) [with type = double]
(候选人期望 2 个参数,提供 1 个)

matrix_class.h:39:5: 注意:Matrix::Matrix() [with type = double]
(候选人期望 0 个参数,提供 1 个)

然后是错误:
matrix_class.h:96:18: 错误:正在初始化“Matrix Matrix::operator=(Matrix) [with type = double]”的参数 1

我认为我没有正确编写赋值运算符或复制构造函数代码,但我找不到错误所在。对不起愚蠢的问题。感谢关注。

//copy constructor
Matrix(const Matrix<type> &org)
{
cout << "Making a copy of " << this << endl;
row = org.getRow();
column = org.getColumn();

//allocate additional space for a copy
data = new type* [row];
for (int i = 0; i < row; ++i)
{
data[i] = new type [column];
}

for (int i = 0; i < row; ++i)
{
for (int j = 0; j < column; ++j)
{
data[i][j] = org.data[i][j];
}
}
}

和运算符=

//assign constructor
Matrix<type> operator = (Matrix<type> r_mtx)
{
if (row == r_mtx.getRow())
{
if (column == r_mtx.getColumn())
{
//TODO: удалить прежний объект?
Matrix<type> temp(row, column);
for (int i = 0; i < row; ++i)
{
for (int j = 0; j < column; ++j)
{
temp.data[i][j] = r_mtx[i][j];
}
}
return temp;
}
else
{
cout << "Assign error: matrix column are not equal!" << endl;
exit(EXIT_FAILURE);
}
}
else
{
cout << "Assign error: matrix rows are not equal!" << endl;
exit(EXIT_FAILURE);
}
}

最佳答案

像这样声明复制赋值运算符

Matrix<type> & operator = ( const Matrix<type> &r_mtx )

问题是临时对象可能不会绑定(bind)到非常量引用。

考虑到赋值运算符应该返回对左侧对象的引用。

您的赋值运算符本质上是无效的。它不是分配左手对象,而是创建一个临时对象。所以没有任何分配。

可以这样定义

Matrix<type> & operator = ( const Matrix<type> &r_mtx )
{
if (row == r_mtx.getRow())
{
if (column == r_mtx.getColumn())
{
for (int i = 0; i < row; ++i)
{
for (int j = 0; j < column; ++j)
{
data[i][j] = r_mtx[i][j];
}
}
return *this;
}
else
{
cout << "Assign error: matrix column are not equal!" << endl;
exit(EXIT_FAILURE);
}
}
else
{
cout << "Assign error: matrix rows are not equal!" << endl;
exit(EXIT_FAILURE);
}
}

关于c++ - 重载 operator= 不能通过赋值编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28907626/

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