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

该文章展示了一个自定义的C++String类的实现,包括构造函数、友元运算符重载(+和==)、成员函数运算符(!=)、类型转换重载以及成员函数get_str()。示例代码中还包括了如何使用这些功能进行字符串操作和比较。
自定义一个 string 类 , 要求添加相关函数的实现代码 。
class String
{
public:
String(const string (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;
}
#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);
    o
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值