C++&QT 作业4

#include 
#include 
using namespace std;
class myString
{
private:
    char *str;
    int size;
public:
    //无参构造
    myString():size(20)
    {
        str=new char [size]; //构造一个长度为10的字符串
        strcpy(str,""); //赋值为空串
    }
    //有参构造
    myString(const char *s)  //string s("hello")
    {
        size=strlen(s);
        str=new char [size+1];
        strcpy(str,s);
    }
    //拷贝构造
    myString(const myString &other):str(new char(*other.str)),size(other.size)
    {
        cout<<"拷贝构造"<str=new char[size];
            memset(str,0,size);
            strcpy(str,other.str);
        }
        return *this;
    }
    //判空函数
    bool empty()
    {
        if(strlen(str)==0)
        {
            return false;
        }else
        {
            return true;
        }
    }
    //size函数
    int my_size()
    {
        return size;
    }
    //c_str函数
    const char *c_str()
    {
        return str;
    }
    //at函数
    char &at(int pos)
    {
        if(pos>=size||pos<0)
        {
            cout<<"越界"<str);
        strcat(m.str,s.str);
        m.size = strlen(m.str);
        return m;
    }
    
    //加等于运算符重载
    const myString operator+=(const myString &s)
    {
        strcat(this->str,s.str);
        this->size = strlen(this->str);
        return *this;
    }
    
    //关系运算符重载(>)
    bool operator >(const myString &s)const{
        if(this->size < s.size)
        {
            return false;
        }
        else
        {
            for(int i=0;isize;i++)
            {
                if(*(this->str+i)<*(s.str+i))
                {
                    return false;
                }
            }
        }
        return true;
    }
    
    //中括号运算符重载
    char & operator[](const int pos)const
    {
        if(pos>=size || pos<0)
        {
            cout<<"访问越界"<s1)
    {
        cout<<"s3>s1"<

你可能感兴趣的:(c++,qt,开发语言)