主要讲带指针的类设计
目标:
String s1(); //默认构造
String s2("hello"); // 字符串构造
String s3(s1); // 拷贝构造
cout << s3 << endl; //输出
s3 = s2; //赋值函数
cout << s3 << endl;
inline
String::String(const char* cstr = 0)
{
if(cstr)
{
m_data = new char[strlen(cstr)+1]; // +1相当于结束符
strcpy(m_data , cstr);
}
else //未指定初值的话 只放一个\0
{
m_data = new char[1];
*m_data = '\0';
}
}
inline
String::~String()
{
delete[] m_data; // 把数组从内存中清除掉
}
使用
String s1();
String s2("hello");
String * p = new String("hello");
delete p;
还带我们看了编译Debug版本时类在内存中实际分配的方式
new数组 注意与delete[] 相互搭配
还有很多细节没有讲 需要自己去研究