浅拷贝
运行逐个字节的复制工作
MyString S1, S2;//如果MyString类里有个char *类型的指针str 而且已经重载过运算符能够直接赋值字符串字面值 S1 = “this”; S2 = “that”; S1 = S2;
浅拷贝实际过程
深拷贝
将一个对象中指针变量指向的内容拷贝到还有一个对象中指针成员对象指向的地方。
深拷贝实际过程
深拷贝代码实现过程
String & operator = (const String & s) { if(str == s.str) return * this; //防止 s = s ;出错 if(str) delete [] str; str = new char[strlen(s.str)+1]; strcpy(str , s.str); return * this; }