深入C++05:运算符重载

运算符重载 1.复数类 运算符重载目的:使对象运算表现得和编译器内置类型一样; 复数类例子 #include using namespace std; class CComplex{ public: CComplex(int r = 0, int l = 0): mreal(

你可能感兴趣的:(深入C++05:运算符重载)