编写String类的构造函数,析构函数,赋值函数
摘要:
#include <iostream>using namespace std;class String{public:String(const char* str=NULL);String(const String& other);~String(void);String & operator =(const String& other);const char*... 阅读全文
posted @ 2010-08-10 17:40 山径山精 阅读(475) 评论(0) 推荐(0) 编辑