摘要:
关于类的运算符重载:分为两种: 1)将运算符重载为类的友元函数 2)将运算符重在为类的成员函数一: 1 //friend 函数类型 operator 运算符(形参表){} 2 //通过重载 ,进行复数运算 3 #include <iostream> 4 using namespace std; 5 6 class Complex 7 { 8 private: 9 double real;10 double image;11 public:12 Complex(double real=0.0,double image=0.0... 阅读全文
摘要:
今天主要学了多层继承的构造函数和析构函数,多继承的二义性问题以及虚基类1)多层继承:对于一个空心管: Point<-----Circle<-----Tube(Tube 中还有InCircle 内圆成员)多层继承构造函数和析构函数 1 //多层继承的构造函数和析构函数 2 #include <iostream> 3 using namespace std; 4 class Point{ 5 private: 6 int X,Y; 7 public: 8 Point(int X,int Y) 9 ... 阅读全文