C++(9.23)

主函数

cpp 复制代码
#include"head.h"
int main()
{
    My_string s2("hello");
    My_string s3(5,'A');
    s2.show();
    s3.show();
    My_string s1=s2;
    s1.show();
    My_string s4;
    s4=s3;
    s4.show();
    if(s4.empty_if())
    {
        cout<<"该字符数组为空"<<endl;
    }
    else
    {
        cout<<"该字符数组不为空"<<endl;
    }
     s1.push_back('!');
     s1.show();

     s1.pop_back();
     s1.show();
     cout << "第一个位置是 : " << s1.at(1) << endl;
     s1.clear();
     s1.show();
     cout << "s2当前的长度是 : " << s2.get_length()<<"s3当前的最大容量是"<<s3.get_size()<<endl;

    return 0;
}

头文件:

cpp 复制代码
#ifndef HEAD_H
#define HEAD_H
#include <iostream>
#include <cstring>
using namespace std;
class My_string
{
private:
   char *ptr; //指向字符数组的指针
   int size;  //字符串的最大容量
   int len;   //字符串的当前容量
public:
    My_string();
    My_string(const char *src);
    My_string(int num,char value);
     My_string(const My_string &other);
      My_string &operator=(const My_string &other);
             void show();
             bool empty_if();
             void push_back(char value);
             void pop_back();
             char &at(int index);
             void clear();
            int get_length();
             int get_size();
             ~My_string();
};
#endif // HEAD_H

源文件:

cpp 复制代码
#include"head.h"
using namespace std;

My_string::My_string():size(15)
{
    this->ptr =new char[size];
    this->ptr [0]='\0';
    this->len=0;
}
My_string::My_string(const char *src)
{
    this->len=strlen(src);
    this->size=this->len+1;
    this->ptr =new char[size];
    strcpy(this->ptr,src);
}
My_string::My_string(int num,char value)
{
    this->len=num;
    this->size=this->len+1;
    this->ptr =new char[num];
    for(int i=0;i<5;i++)
    {
    this->ptr[i]=value;
    }
}
My_string::My_string(const My_string &other)
{
    this->len = other.len;
    this->size = other.size;
    this->ptr = new char[size];  // 分配新的内存
    strcpy(this->ptr, other.ptr);  // 复制源对象的字符串内容
}
My_string&My_string ::operator=(const My_string &other)
{
    if(this != &other)               //防止自己给自己赋值
           {
               this->size = other.size;
               this->len = other.len;
               this->ptr = new char[size];
               strcpy(this->ptr ,other.ptr);              //深拷贝
           }
           return *this;                  //返回值自身的引用
}
void My_string::show()
{
    cout<<this->ptr<<endl;
}
My_string::~My_string()
{
    delete this->ptr;
}

bool My_string::empty_if()
{
    return this->len==0;
}
void My_string::push_back(char value)
   {

       ptr[len] = value;           // 在尾部添加字符
       ptr[len+1] = '\0';  // 确保字符串以空字符结尾
       this->len++;
   }
   void My_string::pop_back()
   {
       if (this->len > 0)                  // 确保字符串非空
       {

           ptr[len-1] = '\0'; // 更新终止符
           this->len--;
       }
   }
   char &My_string::at(int index)
      {
          return ptr[index-1];             // 返回引用以支持修改
      }
   void My_string::clear()
     {
         this->len = 0;                       // 重置长度为 0
         ptr[0] = '\0';                 // 以空字符结束
     }
   int My_string::get_length()
      {
          return this->len;
      }
   int My_string::get_size()
       {
           return this->size;
       }
相关推荐
exm-zem几秒前
多用户图书管理系统
c++
☆璇2 分钟前
【数据结构】排序
c语言·开发语言·数据结构·算法·排序算法
我要成为c嘎嘎大王2 分钟前
【C++】初识C++(1)
开发语言·c++
良木林6 分钟前
JavaScript书写基础和基本数据类型
开发语言·前端·javascript
艾莉丝努力练剑3 小时前
【LeetCode&数据结构】单链表的应用——反转链表问题、链表的中间节点问题详解
c语言·开发语言·数据结构·学习·算法·leetcode·链表
还债大湿兄5 小时前
《C++内存泄漏8大战场:Qt/MFC实战详解 + 面试高频陷阱破解》
c++·qt·mfc
倔强青铜37 小时前
苦练Python第18天:Python异常处理锦囊
开发语言·python
u_topian7 小时前
【个人笔记】Qt使用的一些易错问题
开发语言·笔记·qt
珊瑚里的鱼8 小时前
LeetCode 692题解 | 前K个高频单词
开发语言·c++·算法·leetcode·职场和发展·学习方法
AI+程序员在路上8 小时前
QTextCodec的功能及其在Qt5及Qt6中的演变
开发语言·c++·qt