标题:运算符重载为友元函数的问题
取消只看楼主
chen1204019
Rank: 1
来 自:广东
等 级:新手上路
帖 子:93
专家分:0
注 册:2012-12-3
结帖率:90.63%
已结贴  问题点数:10 回复次数:1 
运算符重载为友元函数的问题
#include <iostream>
using namespace std;
class Complex
{
public:
    Complex(double r=0.0, double i=0.0):real(r), imag(i) {}
    friend Complex operator+(const Complex &c1, const Complex &c2);
    friend Complex operator-(const Complex &c1, const Complex &c2);
    friend ostream &operator<<(ostream &out, const Complex &c);
private:
    double real;
    double imag;
};

Complex operator+(const Complex &c1, const Complex &c2)
{
    return Complex(c1.real+c2.real, c1.imag+c2.imag);
}
Complex operator-(const Complex &c1, const Complex &c2)
{
    return Complex(c1.real-c2.real, c1.imag-c2.imag);
}
ostream &operator<<(ostream &out, const Complex &c)
{
    out<<"("<<c.real<<","<<c.imag<<")";
    return out;
}
int main()
{
    Complex c1(5, 4), c2(2, 10), c3;
    cout<<"c1="<<c1<<endl;
    cout<<""c2="<<c2<<endl;
    c3=c1-c2;
    cout<<"c3=c1-c2"<<c3<<endl;
    c3=c1+c2;
    cout<<"c3=c1+c2"<<c3<<endl;
    return 0;
}
为什么运行时会出现错误:fatal error C1001: INTERNAL COMPILER ERROR
怎么回事?
搜索更多相关主题的帖子: double public include private Complex 
2013-06-06 16:50
chen1204019
Rank: 1
来 自:广东
等 级:新手上路
帖 子:93
专家分:0
注 册:2012-12-3
得分:0 
少了也还是错啊

新手发言,请多指教!
2013-06-06 18:06



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-414666-1-1.html




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

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