#include
using namespace std;
class Complex
{
public:
Complex(){ real = 0; imag = 0; }
Complex(double r, double i){ r = real; i = imag; }
operator double(){ return real; }
private:
double real;
double imag;
};
int main()
{
Complex c1(3, 4), c2(5, -10), c3;
double d;
d = 2.5 +c1;
cout << d << endl;
return 0;
}
這是《C++程序設計 》譚浩強版本P339的一個例子,為什麼,我用VS2013運行後得到的是-9.25596e+061,請問哪裡出錯了,為什麼會有這個值,謝謝!
Complex(double r, double i){ r = real; i = imag; }
寫反了
Complex(double r, double i){ real = r; iimag = i; }
另外譚浩強的垃圾書就不要看了。此人坑害中國學生20年,也算奇葩了。