| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1117 人关注过本帖
标题:转换构造函数问题
取消只看楼主 加入收藏
choco1024
Rank: 3Rank: 3
等 级:论坛游侠
威 望:1
帖 子:183
专家分:140
注 册:2008-8-31
结帖率:100%
收藏
 问题点数:0 回复次数:0 
转换构造函数问题
#include "iostream"
using namespace std;
class Complex{
public:
    Complex(){real=0;imag=0;}
    Complex(double r){real=r;imag=0;}
    Complex(double r,double i){real=r;imag=i;}
    friend Complex operator +(Complex c1,Complex c2);
    void display();
private:
    double real;
    double imag;
};
Complex operator +(Complex c1,Complex c2)
{
    Complex c3;
    c3.real=c1.real+c2.real;
    c3.imag=c1.imag+c2.imag;
    return c3;
}
void Complex::display()
{cout<<"("real<<","<<imag"<<i)"<<endl;}
void main()
{
    Complex c1(2.5,3.6),c2(2.0,3.8),c3;
    c3=c1+1.5;
    c3.display();
}

f:\c程序\转换构造函数\late.cpp(8) : fatal error C1001: INTERNAL COMPILER ERROR
        (compiler file 'msc1.cpp', line 1786)
         Please choose the Technical Support command on the Visual C++
         Help menu, or open the Technical Support help file for more information
Error executing cl.exe.

late.obj - 1 error(s), 0 warning(s)


我没见过那样的错误,那程序代码还是从书上找的,运行结果怎么会那样?!求解,求解。
搜索更多相关主题的帖子: 函数 构造 
2008-08-31 16:04
快速回复:转换构造函数问题
数据加载中...
 
   



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

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