C++编译出现fatal error C1001: INTERNAL COMPILER ERROR怎么办??

2020-07-18 社会 49阅读
#include 
using namespace std;
class Complex{
public:
Complex(){
real=0;
imag=0;}
Complex(double a,double i){ 
real=a;
imag=i;}
Complex(double a){ 
real=a;
imag=0;}
operator double(){
return real;}
friend istream & operator >>(istream &,Complex &); //<---这里声明要与实现参数类型一致才可以!加&引用
friend ostream & operator <<(ostream &,Complex&); //<---同上
friend Complex operator+(Complex &,Complex &); 
private:
double real;
double imag;
};
声明:你问我答网所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系fangmu6661024@163.com