| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 595 人关注过本帖
标题:关于转换构造函数的问题!
取消只看楼主 加入收藏
S140131022
Rank: 2
来 自:重庆邮电大学
等 级:论坛游民
帖 子:205
专家分:35
注 册:2014-10-9
结帖率:90.24%
收藏
已结贴  问题点数:20 回复次数:2 
关于转换构造函数的问题!
#include<iostream>
using namespace std;
 
class Complex
{
public:
    Complex();
    Complex(int,int);
    ~Complex();
    operator double(){return real;}   //类型转换函数
    friend Complex operator+(Complex&,Complex&);
    Complex(double r){real=r;imag=0;}
    void display();
private:
    int real;
    int imag;
};

Complex operator+(Complex&a,Complex&b)
{
    return Complex(a.real+b.real,a.imag+b.imag);
}

void Complex::display()
{
    cout<<real<<"+"<<imag<<"i"<<endl;
}

Complex::Complex()
{
    real=0;
    imag=0;
}



Complex::Complex(int a,int b):real(a),imag(b){}

Complex::~Complex(){}

int main()
{
    Complex a(1,2),b(2,3);
    Complex c;
   
    a.display();
    c=a+Complex(3);
    c.display();

    getchar();

}
搜索更多相关主题的帖子: Complex private display include public 
2015-09-22 21:12
S140131022
Rank: 2
来 自:重庆邮电大学
等 级:论坛游民
帖 子:205
专家分:35
注 册:2014-10-9
收藏
得分:0 
输出结果为: 1+2i
             4+0i

请问我的main函数里面:
Complex(3)相当于将double型数字3转换为Complex型3+0i

然后利用运算符重载来完成复数的加法,也即:1+2i+3+0i

所以结果应该为:4+2i

但是为何输出结果为4+0i

我用的编译器是VS2010,请问难道是编译器的问题吗?

既然还有不甘心
就还没到放弃的时候~
2015-09-22 21:15
S140131022
Rank: 2
来 自:重庆邮电大学
等 级:论坛游民
帖 子:205
专家分:35
注 册:2014-10-9
收藏
得分:0 
回复 5楼 rjsp
代码是照着谭汉强c++课本上写得~~所以有时候比较奇怪~~后面加一个getchar()是因为我用的vs2010 如果不加的话 运行结果会一闪而过~看不清~  不要不给我解答问题啦哈~

既然还有不甘心
就还没到放弃的时候~
2015-09-25 17:51
快速回复:关于转换构造函数的问题!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016483 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved