摘要: #include #include using namespace std; class String { public: String(const char *pdata); String(const String &rhs); String &operator = (const String &rhs); ~String(); private: ... 阅读全文
posted @ 2018-11-19 11:11 洛笔达 阅读(155) 评论(0) 推荐(0) 编辑