作业:仿照string,封装一个my_string类,并实现相关功能

本文展示了一个C++实现的自定义字符串类`My_string`,包括有参构造、无参构造、拷贝构造、拷贝赋值、析构函数等方法,支持字符串长度查询、字符定位、转换为C风格字符串等功能。在主函数中,创建了三个`My_string`对象并展示了其内容和长度。
摘要由CSDN通过智能技术生成

代码功能:

#include <iostream>
#include <cstring>


using namespace std;

class My_string
{
private:
    char *data;
    int len;
public:
    My_string(const char *str=NULL)
    {
        if(str){                     //有参构造
            len=strlen(str);
            data=new char[strlen(str)+1];
            strcpy(data,str);
        }else{                       //无参构造
            data=new char('\0');
            len=0;
        }
    }
    My_string(const My_string &other):len(other.len)//拷贝构造
    {
        data=new char[other.len+1];
        strcpy(data,other.data);
    }
    My_string& operator=(const My_string &other)//拷贝赋值
    {
        if(this!=&other){
            data=new char[other.len+1];
            strcpy(data,other.data);
            len=other.len;
        }
        return *this;
    }

    ~My_string()   //析构函数
    {
        delete []data;
        cout<<"析构函数"<< " 析构地址为:"<< this <<endl;
    }

    bool empty()  //判断是否为空
    {
        if(len==0)
        {
            return 0;
        }
        else
        {
            return 1;
        }
    }

    int size()  //返回字符串的长度
    {
        return len;
    }

    char &at(int index)  //定位函数
    {
        if(index<0 || index >= len)
        {
            cout<<"定位错误!"<<endl;
        }


        return *(data+index);

    }

        char* c_str()    //转化为C风格字符串
        {
            return data;
        }

    void show()
    {
        cout<<"cstr = "<<data<<endl;
        cout<<"len = "<<len<<endl;
    }
};

void show(My_string s)
{
    cout<<"**************************"<<endl;
    cout<<"字符串长度为>>>"<<s.size()<<endl;
    cout<<"字符串为>>>"<<s.c_str()<<endl;


}

int main()
{
    My_string s = "good time";
    show(s);
     My_string s1 = "hello world";
    show(s1);
    My_string  s2 = "你好,世界!";
    show(s2);


    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值