鱼C论坛

 找回密码
 立即注册
查看: 1041|回复: 5

[已解决]重载运算符参数加const

[复制链接]
发表于 2020-3-29 14:33:56 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
/*求复数相加*/
#include<iostream>
using namespace std;
class Complex
{
        public:
                Complex()
                {
                        real=0;
                        imag=0;
                }
                Complex(double t,double d)
                {
                        real=t;
                        imag=d;
                }
               
                Complex operator +(const int &x);         /*不加const显示编译错误*/
       
                void display()
                {
                        cout<<"("<<real<<","<<imag<<"!)"<<endl;
                }
        private:
                double real;
                double imag;
};
Complex Complex::operator +(const int &x)              /*不加const显示编译错误*/
{
        return Complex(real+x,imag);
}
int main()
{
        Complex t1(3.4,5.2);
        Complex t3,t4;
        t3=t1+2;
        t3.display();
        return 0;
}
不加const编译通不过,这是为什么呢,我也不需要改变int的值呀
最佳答案
2020-3-29 14:44:13
#include <iostream>

int main()
{
        int a = 1234;
        int &r1 = a;
        //int &r2 = 1234;        // 这个就不行
        const int &r3 = 1234;        // 没问题
        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-3-29 14:36:45 | 显示全部楼层
不应该的,看你编译器,你的编译器错误信息是什么
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-29 14:41:38 | 显示全部楼层
#include<iostream>
using namespace std;
class Complex
{
        public:
                Complex()
                {
                        real=0;
                        imag=0;
                }
                Complex(double t,double d)
                {
                        real=t;
                        imag=d;
                }
                
                Complex operator +(int &x);         /*不加const显示编译错误*/
        
                void display()
                {
                        cout<<"("<<real<<","<<imag<<"!)"<<endl;
                }
        private:
                double real;
                double imag;
};
Complex Complex::operator +(int &x)              /*不加const显示编译错误*/
{
        return Complex(real+x,imag);
}
int main()
{
        Complex t1(3.4,5.2);
        Complex t3,t4;
        //t3=t1+2;                // 是这里导致的,加const就是为了这里
        int a = 1234;
        t3 = t1 + a;
        t3.display();
        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-3-29 14:42:54 | 显示全部楼层
time1970 发表于 2020-3-29 14:36
不应该的,看你编译器,你的编译器错误信息是什么

c.cpp(35) : error C2679: binary '+' : no operator defined which takes a right-hand operand of type 'const int' (or there is no acceptable conversion)
执行 cl.exe 时出错.
声明和下面定义都不加const会显示如上错误
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-29 14:44:13 | 显示全部楼层    本楼为最佳答案   
#include <iostream>

int main()
{
        int a = 1234;
        int &r1 = a;
        //int &r2 = 1234;        // 这个就不行
        const int &r3 = 1234;        // 没问题
        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-29 14:57:03 | 显示全部楼层
大河之jian 发表于 2020-3-29 14:42
c.cpp(35) : error C2679: binary '+' : no operator defined which takes a right-hand operand of type ...

楼下正解,引用只能对左值,常引用才可以引用右值
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-15 17:19

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表