self-confidence,the source of all the power

导航

2011年10月21日 #

C++4个基本函数

摘要: class String{public: String(const char *str = NULL);//普通构造函数 String(const String &other);//拷贝构造函数 ~ String(void);//析构函数 String & operator =(const String &other); //赋值函数private: char*m_String;//私有成员,保存字符串};String::~String(void){ cout<<"Destructing"<<endl; delete [] m 阅读全文

posted @ 2011-10-21 00:00 漩涡鸣人 阅读(529) 评论(0) 推荐(0) 编辑