摘要: 已知类String的原型为:class String{public: String(const char *str = NULL); // 普通构造函数 String(const String &other); // 拷贝构造函数 ~ String(void); // 析构函数 String& operator =(const String &other); // 赋值函数 String& operator +(co... 阅读全文
posted @ 2013-09-02 10:44 CPYER 阅读(1069) 评论(0) 推荐(1)