commit
f2e5dd0d34
@ -21,7 +21,7 @@ public:
|
|||||||
const String &operator=(const String &R)
|
const String &operator=(const String &R)
|
||||||
{
|
{
|
||||||
length = R.length;
|
length = R.length;
|
||||||
strcpy(R.sPtr, sPtr);
|
strcpy(sPtr, R.sPtr);
|
||||||
return *this;
|
return *this;
|
||||||
}; //重载赋值运算符 =
|
}; //重载赋值运算符 =
|
||||||
const String &operator+=(const String &R); //字符串的连接 +=
|
const String &operator+=(const String &R); //字符串的连接 +=
|
||||||
|
Loading…
Reference in New Issue
Block a user