鱼C论坛

 找回密码
 立即注册
查看: 1861|回复: 5

小白求助 重载==操作符的疑问

[复制链接]
发表于 2020-3-28 15:25:54 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
bool MyString::operator==(const char* p)
{
        if (strcmp(this->m_space, p) == 0)
        {
                return true;
        }
        else
        {
                return false;
        }
}

        if (s2 == "abcdefg")
        {
                cout << "相同" << endl;
        }
        else
        {
                cout << "不相同" << endl;

        }


如题 重载== 操作符,判断一个存储字符串的变量s2,和另外一个字符串是否相同,直接用strcmp行吗 还是要
像下面这样判断
bool MyString::operator==(const char *p) const
{
        if (p == NULL)
        {
                if (m_len == 0)
                {
                        return true;
                }
                else
                {
                        return false;
                }
        }
        else
        {
                if (m_len == strlen(p))
                {
                        return !strcmp(m_p, p);
                }
                else
                {
                        return false;
                }
        }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-3-28 15:30:03 | 显示全部楼层
看你的需求,还有类本身的设计
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-3-28 15:32:52 | 显示全部楼层
#include "MyString.h"

MyString::MyString()
{
        this->m_len = 0;
        this->m_space = new char[m_len + 1];
        strcpy(this->m_space, "");
}

MyString::MyString(const char* p)
{
        if (p == NULL)
        {
                this->m_len = 0;
                this->m_space = new char[m_len + 1];
                strcpy(this->m_space, "");
        }
        else
        {
                this->m_len = strlen(p);
                this->m_space = new char[m_len + 1];
                strcpy(this->m_space, p);
        }
}

MyString::MyString(const MyString& obj)
{
        this->m_len = obj.m_len;
        this->m_space = new char[m_len + 1];
        strcpy(this->m_space, obj.m_space);
}

MyString::~MyString()
{
        if (this->m_space != NULL)
        {
                delete[] this->m_space;
                this->m_space = NULL;
                this->m_len = 0;
        }
}

MyString& MyString::operator=(MyString& s)
{
        if (this->m_space != NULL)
        {
                delete[] this->m_space;
                this->m_len = 0;
        }
        this->m_len = s.m_len;
        this->m_space = new char[m_len];
        strcpy(this->m_space, s.m_space);
        return *this;
}

MyString& MyString::operator=(const char* p)
{
        if (this->m_space != NULL)
        {
                delete[] this->m_space;
                this->m_len = 0;
        }
        if (p == NULL)
        {
                this->m_len = 0;
                this->m_space = new char[m_len + 1];
                strcpy(this->m_space, "");
        }
        else
        {
                this->m_len = strlen(p);
                this->m_space = new char[m_len + 1];
                strcpy(this->m_space, p);
        }
        return *this;
}

char& MyString::operator[](int index)
{
        return this->m_space[index];
}

bool MyString::operator==(MyString& s)
{
        if (this->m_len != s.m_len)
        {
                return false;
        }

        if (strcmp(this->m_space, s.m_space) == 0)
        {
                return true;
        }
        else
        {
                return false;
        }
}

bool MyString::operator==(const char* p)
{
        if (strcmp(this->m_space, p) == 0)
        {
                return true;
        }
        else
        {
                return false;
        }
}

bool MyString::operator!=(MyString& s)
{
        if (!(*this == s))
        {
                return true;
        }
        else
        {
                return false;
        }
}

bool MyString::operator!=(const char* p)
{
        if (!(*this == p))
        {
                return true;
        }
        else
        {
                return false;
        }

}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-3-28 15:33:57 | 显示全部楼层
BngThea 发表于 2020-3-28 15:30
看你的需求,还有类本身的设计

下面发了 我的MyString.app 你给看下  能不能直接用strcmp  还是用手动的判断
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-28 15:37:31 | 显示全部楼层
琴长不过时光 发表于 2020-3-28 15:33
下面发了 我的MyString.app 你给看下  能不能直接用strcmp  还是用手动的判断

没其他需求就可以
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-3-28 19:55:30 | 显示全部楼层
BngThea 发表于 2020-3-28 15:37
没其他需求就可以

哦哦 谢谢大佬
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-15 17:18

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表