重载运算符和链接

Overloading operator and chaining(重载运算符和链接)
本文介绍了重载运算符和链接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个类,它具有存储动态2D数组的对象"Matrix"。我正在尝试重载"="运算符,以便可以将一个矩阵复制到另一个矩阵。

以下工作方式:

Square_Matrix a,b,c;
a = b;

但是,这不起作用:

a = b = c;
^它给出以下错误:1)运算符=不匹配(操作数类型为‘Square_Matrix’和‘void’).2)参数%1从"void"到"Const Square_Matrix"的转换未知

如何修复此问题?

//header file
void operator=(const Square_Matrix& Par2);

//.cpp file
void Square_Matrix::operator=(const Square_Matrix& Par2){
    if (size != Par2.size){
        cout << "Matrices are of different size" << endl;
    } else {
        for (int i = 0; i < N; i++){
            for (int j = 0; j < N; j++){
                 matrix[i][j] = Par2.matrix[i][j];
            }
        }
    }
}

推荐答案

您需要返回对分配的对象的引用。

Square_Matrix& Square_Matrix::operator=(const Square_Matrix& Par2){
    // do stuff
    return *this;
}

这篇关于重载运算符和链接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

error when trying to run an overloaded function with float parameters.(尝试运行带有浮点参数的重载函数时出错。)
C++ lt;lt; operator overloading without friend function(没有友元函数的C++lt;lt;运算符重载)
C++ - How does the compiler decide between overloaded functions with reference types as parameter?(C++-编译器如何决定使用引用类型作为参数的重载函数?)
How can I invoke an overloaded () operator on the keyword this?(如何对关键字this调用重载()运算符?)
How do I denote a pure virtual function in a UML class diagram?(如何在UML类图中表示纯虚函数?)
MPI parallel IO in ASCII format (How do I do it?)(ASCII格式的MPI并行IO(我该怎么做?))