8.24 c++

本文介绍了如何在C++中创建一个名为my_string的自定义字符串类,并重载了关系运算符(>、<、==、!=、>=、<=)、加号运算符(+)以及取成员运算符([])和赋值运算符(=)。通过示例代码展示了这些运算符的使用,包括字符串的比较、连接和成员访问等功能。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 

在my_string的基础上,将能重载的运算符全部重载掉

关系运算符:>、=、

加号运算符:+

取成员运算符:[]

赋值运算符: =

#include <iostream>
#include<string>
#include<string.h>
using namespace std;

class my_string
{
private:
    char*str;
    int len;
public:
    ~my_string()
    {
        delete(str);
    }
    my_string(){}
    my_string(char *p)
    {
        str = new char;
        str = p;
    }
    bool my_empty();
    int my_size();
    char *my_str();
    my_string &operator=(const my_string&p)
    {
        this->str= p.str;
        return *this;
    }
    friend bool operator>(my_string&,my_string&);
    friend bool operator<(my_string&,my_string&);
    friend bool operator==(my_string&,my_string&);
    friend bool operator>=(my_string&,my_string&);
    friend bool operator<=(my_string&,my_string&);
    friend bool operator!=(my_string&,my_string&);
    friend my_string operator+(my_string&,my_string&);
    char operator[](int i)
    {
        return *(this->str+i);

    }
};

my_string operator+(my_string&p,my_string&q)
{
    my_string temp;
    strcpy(temp.str,p.str);
    strcat(temp.str,q.str);
    return temp;
}


bool operator>=(my_string&p,my_string&q)
{
    if(strcmp(p.my_str (),q.my_str ())>=0)
        return true;
    else
        return false;
}

bool operator<=(my_string&p,my_string&q)
{
    if(strcmp(p.my_str (),q.my_str ())<=0)
        return true;
    else
        return false;
}

bool operator!=(my_string&p,my_string&q)
{
    if(strcmp(p.my_str (),q.my_str ())!=0)
        return true;
    else
        return false;
}

bool operator==(my_string&p,my_string&q)
{
    if(strcmp(p.my_str (),q.my_str ())==0)
        return true;
    else
        return false;
}

bool operator>(my_string&p,my_string&q)
{
    char*p1 = p.my_str ();
    char*p2 = q.my_str ();
    if(strcmp(p1,p2)>0)
        return true;
    else
        return false;
}

bool operator<(my_string&p,my_string&q)
{
    if(strcmp(p.str,q.str)<0)
        return true;
    else
        return false;
}

bool my_string::my_empty()
{
    if(*str)
        return false;
    else
        return true;
}
int my_string::my_size()
{
    len=0;
    char *p=str;
    while(*p)
    {
        len++;
        p++;
    }
    return len;
}
char *my_string::my_str()
{
    return str;
}

int main()
{
    my_string s1("hqyj"),s2("abcdefghijkl");
    cout<<"is empty?"<<s1.my_empty ()<<endl;
    cout<<"size>>>"<<s1.my_size ()<<endl;
    cout<<"s1 str>>>"<<s1.my_str ()<<endl;
    s2=s1;
    cout<<"s2 str>>>"<<s2.my_str ()<<endl;
    my_string s3;
    s3=s1;
    cout<<"s3 str>>>"<<s3.my_str ()<<endl;
    my_string aa=("abcdefghijklmnopq");
    cout<<aa.my_str ()<<endl;
    cout<<aa.my_size ()<<endl;
    cout<<aa.my_empty ()<<endl;
    my_string c1("abcd"),c2("qwer");
    cout<<c1.my_str ()<<endl;
    cout<<c2.my_str ()<<endl;
    cout<<(c1>=c2?"c1>=c2":"c1<=c2")<<endl;
    my_string c3;
    c3 = (c1+c2);
    cout<<c3.my_str ()<<endl;
    cout<<c3[1]<<endl;
    cout<<c3[2]<<endl;
    cout<<c3[5]<<endl;
    system("pause");
    return 0;
}

 结果演示: 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值