鱼C论坛

 找回密码
 立即注册
查看: 1656|回复: 2

[已解决]C++之重载运算符问题,救命!!

[复制链接]
发表于 2021-5-18 20:07:22 | 显示全部楼层 |阅读模式

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

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

x
重载运算符‘+’、‘=’与‘-’用于字符串的连接,其中main函数为:

        void main()

        {

             string s1("湖北大学           "),s3;

             string s2("计算机与信息工程学院欢迎您!");

             s3=s1+s2;  

             s3.display();

                s3=s1-s2;  

             s3.display();



        }

要求运行结果为:

湖北大学           计算机学院欢迎您!

湖北大学计算机学院欢迎您!


我发现了很矛盾的地方,题目中主函数用string作为类名,可是用#include<string>又很矛盾,反正编译器一直报错
有没有大佬愿意补全代码,必定十分感激!
最佳答案
2021-5-19 14:01:01
本帖最后由 ponyo123 于 2021-5-19 14:04 编辑

#include <iostream>
#include <string>
using namespace std;
class String
{
    private:
    string s;
    public:
    String(string);
    String operator+(const String &b);
    String operator-(const String &a);
    void operator=(const String &b)
    {
        this->s=b.s;
    }
    void display();
};
String::String(string x)
{
    s=x;
}
int main()
{
    String s1("湖北大学     ");
    String s2("计算机与信息工程学院欢迎您!");
        String s4("     ");
    String s3=s1+s2;
    s3.display();
    s3=s3-s4;
    s3.display();
    return 0;
}

String String::operator+(const String &b)
{
    String c=b;
          c.s.insert(0,this->s);                                 //使用insert函数在位置0前插入字符串s
    return c;
}
String String::operator-(const String &a)
{
        for(int i=0;i<this->s.length();i++)
        {
                for(int j=0;j<a.s.length();j++)
                {
                        if(this->s[i]==a.s[j])
                        {
                                this->s.erase(i,a.s.length());           //使用erase函数从i位置开始删除某长度的字符串
                                i+=a.s.length();
                        }
                }
        }
                return s;
}
void String::display()
{
    cout<<s<<endl;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-5-19 14:01:01 | 显示全部楼层    本楼为最佳答案   
本帖最后由 ponyo123 于 2021-5-19 14:04 编辑

#include <iostream>
#include <string>
using namespace std;
class String
{
    private:
    string s;
    public:
    String(string);
    String operator+(const String &b);
    String operator-(const String &a);
    void operator=(const String &b)
    {
        this->s=b.s;
    }
    void display();
};
String::String(string x)
{
    s=x;
}
int main()
{
    String s1("湖北大学     ");
    String s2("计算机与信息工程学院欢迎您!");
        String s4("     ");
    String s3=s1+s2;
    s3.display();
    s3=s3-s4;
    s3.display();
    return 0;
}

String String::operator+(const String &b)
{
    String c=b;
          c.s.insert(0,this->s);                                 //使用insert函数在位置0前插入字符串s
    return c;
}
String String::operator-(const String &a)
{
        for(int i=0;i<this->s.length();i++)
        {
                for(int j=0;j<a.s.length();j++)
                {
                        if(this->s[i]==a.s[j])
                        {
                                this->s.erase(i,a.s.length());           //使用erase函数从i位置开始删除某长度的字符串
                                i+=a.s.length();
                        }
                }
        }
                return s;
}
void String::display()
{
    cout<<s<<endl;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-5-19 20:08:43 | 显示全部楼层
本帖最后由 肚子饿了233 于 2021-5-19 20:10 编辑
ponyo123 发表于 2021-5-19 14:01
#include
#include
using namespace std;

允许我指正一下:if(this->s==a.s[j])应改为if(this->s==a.s[j])  ,s后面的方括号咋打不出来了呢?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-11 05:00

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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