摘要:
```cpp / cwl: 内容:c++非面向对象的一些杂项总结 1, c++转换函数 / include using namespace std; class Fraction { public: Fraction(int num, int den = 1) :m_numberator(num), 阅读全文
摘要:
```CPP /** 作者: cwl 内容: 类的符合,继承,委托 */ #include using namespace std; class Father { public: Father(const string & _name = string("default")): name(_name), age(10) {} Father(const F... 阅读全文
摘要:
```cpp /** 作者: cwl 内容: 带指针类的注意点 c++构造函数,拷贝构造,拷贝赋值 new delete解析 */ #include using namespace std; class String { public: String(const char* cstr = 0) { if(cstr)... 阅读全文
摘要:
```CPP include include include using namespace std; class Complex { public: Complex (double r = 0, double i = 0) : re (r), im (i) {} ///冒号后面是初始化的过程,注意 阅读全文