【仿照string类,写一个my_string类】

仿照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;
}







评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值