华清远见23042 ,C++考试 编程题:自定义一个 string 类 , 要求添加相关函数的实现代码_华清远见c++考试

#include <iostream>
#include <string>

using namespace std;

class String {
public:
    String(const string& s) : str(s) {} // 构造函数

    // 友元运算符重载
    friend String operator +(const String& s1, const String& s2);
    friend bool operator ==(const String& s1, const String& s2);

    // 成员函数运算符
    bool operator !=(const String& other);

    // 类型转换重载
    String& operator =(const String& s);
    operator string(); // 类型转换

    // 成员函数
    string get_str();

private:
    string str;
};

String operator +(const String& s1, const String& s2) {
    String result = s1.str + s2.str;
    return result;
}

bool operator ==(const String& s1, const String& s2) {
    return s1.str == s2.str;
}

bool String::operator !=(const String& other) {
    return str != other.str;
}

String& String::operator =(const String& s) {
    if (this != &s) {
        str = s.str;
    }
    return *this;
}

String::operator string() {
    return str;
}

string String::get_str() {
    return str;
}

int main() {
    String s1("Hello");
    String s2("World");

    String s3 = s1 + s2;
    cout << "s3: " << s3.get_str() << endl;

    if (s1 == s2) {
        cout << "s1 is equal to s2" << endl;
    } else {
## 最后

**自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。**

**深知大多数Java工程师,想要提升技能,往往是自己摸索成长,自己不成体系的自学效果低效漫长且无助。**

**因此收集整理了一份《2024年嵌入式&物联网开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。**

![img](https://img-blog.csdnimg.cn/img_convert/aebfd3571c283e6cb98b64600bb9807d.png)

![img](https://img-blog.csdnimg.cn/img_convert/20d6e14f1d49f7dbb0c253f4a0886531.jpeg)

![img](https://img-blog.csdnimg.cn/img_convert/a9733aa88e55fec1b71da6a5f3eba38b.png)

 ![img](https://img-blog.csdnimg.cn/img_convert/4a5a5899504f407809d459ba8b0d2010.png)

![img](https://img-blog.csdnimg.cn/img_convert/39cd030166a13763be2d9211ddab5beb.png)

![img](https://img-blog.csdnimg.cn/img_convert/8e4e2de54de22cc660f828cbd8deb300.png)

![](https://img-blog.csdnimg.cn/img_convert/4923ecf4b44349f983918ba9446f7c9e.png)

 

**既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上嵌入式&物联网开发知识点,真正体系化!**

[**如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!**](https://bbs.csdn.net/topics/618654289)

**由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新**!!


opics/618654289)

**由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新**!!


  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值