E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
D-booker
深入C++05:运算符重载
运算符重载 1.复数类 运算符重载目的:使对象运算表现得和编译器内置类型一样; 复数类例子 #include
using namespace std; class CComplex{ public: CComplex(int r = 0, int l = 0): mreal(