#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()