建立一个字符串类strtype实现字符串的连接
时间: 2024-04-30 22:20:07 浏览: 84
好的,以下是一个简单的strtype类实现字符串连接的示例代码:
```c++
#include <iostream>
#include <cstring>
class strtype
{
private:
char* str;
public:
strtype(const char* s = "") // 构造函数
{
str = new char[strlen(s) + 1];
strcpy(str, s);
}
~strtype() // 析构函数
{
delete[] str;
}
void join(const char* s) // 字符串连接函数
{
char* tmp = new char[strlen(str) + strlen(s) + 1];
strcpy(tmp, str);
strcat(tmp, s);
delete[] str;
str = tmp;
}
void display() const // 显示字符串
{
std::cout << str << std::endl;
}
};
int main()
{
strtype s1("hello");
s1.join(" world!");
s1.display();
return 0;
}
```
运行结果:
```
hello world!
```
阅读全文