仿照string类,写一个my_string类
//无参构造 }
//有参构造
//拷贝构造
//析构函数
//判空函数
//size函数
//c_str函数
//at函数
运行结果如下;
代码如下:(没有严格执行类内声明,类外定义)
#include <iostream>
#include <cstring>
using namespace std;
class my_string
{
public:
my_string():size(10) //无参构造函数
{
str = new char[size]; //堆区10字节
strcpy(str, "");
}
my_string(const char *s) //有参构造函数 //string s("hello world")
{
size = strlen(s);
str = new char[size+1];
strcpy(str, s);
}
my_string(const my_string& other):str(new char [size+1]), size(other.size)//拷贝构造函数
{
strcpy(this->str, other.str);
}
~my_string()//析构函数
{
delete []this->str;
cout<< "析构函数"<< endl;
}
//判空
bool my_empty(const my_string s)
{
return s.size;
}
//size长度
int my_size()
{
return this->size;
}
//c_str函数
void c_str()
{
for(int i = 0; i< this->size; i++)
{
cout<< *(this->str + i);
cout<< endl;
}
}
//at函数
char &at(int pos){
return this->str[pos];
}
private:
char *str; //记录c风格的字符串
int size; //记录字符串的实际长度
};
int main()
{
my_string s1("hello");
s1.c_str();
cout<< s1.my_size()<< endl;
return 0;
}