摘要:
string类 class String { public: String(const char* cstr=0); String(const String& str); String& operator=(const String& str); ~String(); char* get_c_str 阅读全文
2021年9月28日
摘要:
new :先分配内存,载调用构造函数,delete与new恰好相反 调用析构函数delete删除的内容为? 静态函数没有this指针,只能处理静态变量 不会造成浪费 复合的构造和析构函数调用顺序: default(默认)构造函数当有多个时,要声明调用哪个 复合:非指针(classname class 阅读全文