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