在MyString类的基础上完成一下功能: 重载运算符:+、+=、=、[]、>、<、>=、<=、== class MyString{ private: char *m_data; public: MyString(const char *str = 0); MyString(const MyString& rhs); ~MyString(); };C++,完整代码加中文注释
时间: 2024-03-23 14:44:02 浏览: 68
以下是基于MyString类完成的代码,包括了重载运算符:+、+=、=、[]、>、<、>=、<=、==:
```c++
#include <iostream>
#include <cstring>
using namespace std;
class MyString{
private:
char *m_data;
public:
MyString(const char *str = 0); // 构造函数
MyString(const MyString& rhs); // 拷贝构造函数
~MyString(); // 析构函数
MyString& operator=(const MyString& rhs); // 重载=运算符
MyString operator+(const MyString& rhs); // 重载+运算符
MyString& operator+=(const MyString& rhs); // 重载+=运算符
char& operator[](const int index); // 重载[]运算符
friend bool operator>(const MyString& lhs, const MyString& rhs); // 重载>运算符
friend bool operator<(const MyString& lhs, const MyString& rhs); // 重载<运算符
friend bool operator>=(const MyString& lhs, const MyString& rhs); // 重载>=运算符
friend bool operator<=(const MyString& lhs, const MyString& rhs); // 重载<=运算符
friend bool operator==(const MyString& lhs, const MyString& rhs); // 重载==运算符
friend ostream& operator<<(ostream& os, const MyString& str); // 重载<<运算符
};
// 构造函数
MyString::MyString(const char *str){
if (str == NULL){
m_data = new char[1];
*m_data = '\0';
} else {
int length = strlen(str);
m_data = new char[length + 1];
strcpy(m_data, str);
}
}
// 拷贝构造函数
MyString::MyString(const MyString& rhs){
int length = strlen(rhs.m_data);
m_data = new char[length + 1];
strcpy(m_data, rhs.m_data);
}
// 析构函数
MyString::~MyString(){
delete[] m_data;
}
// 重载=运算符
MyString& MyString::operator=(const MyString& rhs){
if (this == &rhs) return *this;
delete[] m_data;
int length = strlen(rhs.m_data);
m_data = new char[length + 1];
strcpy(m_data, rhs.m_data);
return *this;
}
// 重载+运算符
MyString MyString::operator+(const MyString& rhs){
MyString newString;
int length = strlen(m_data) + strlen(rhs.m_data);
newString.m_data = new char[length + 1];
strcpy(newString.m_data, m_data);
strcat(newString.m_data, rhs.m_data);
return newString;
}
// 重载+=运算符
MyString& MyString::operator+=(const MyString& rhs){
int length = strlen(m_data) + strlen(rhs.m_data);
char *temp = new char[length + 1];
strcpy(temp, m_data);
strcat(temp, rhs.m_data);
delete[] m_data;
m_data = temp;
return *this;
}
// 重载[]运算符
char& MyString::operator[](const int index){
return m_data[index];
}
// 重载>运算符
bool operator>(const MyString& lhs, const MyString& rhs){
return strcmp(lhs.m_data, rhs.m_data) > 0;
}
// 重载<运算符
bool operator<(const MyString& lhs, const MyString& rhs){
return strcmp(lhs.m_data, rhs.m_data) < 0;
}
// 重载>=运算符
bool operator>=(const MyString& lhs, const MyString& rhs){
return strcmp(lhs.m_data, rhs.m_data) >= 0;
}
// 重载<=运算符
bool operator<=(const MyString& lhs, const MyString& rhs){
return strcmp(lhs.m_data, rhs.m_data) <= 0;
}
// 重载==运算符
bool operator==(const MyString& lhs, const MyString& rhs){
return strcmp(lhs.m_data, rhs.m_data) == 0;
}
// 重载<<运算符
ostream& operator<<(ostream& os, const MyString& str){
os << str.m_data;
return os;
}
int main(){
MyString str1("Hello");
MyString str2("World");
MyString str3 = str1 + str2;
cout << str3 << endl;
str3 += str1;
cout << str3 << endl;
cout << str3[2] << endl;
cout << (str1 > str2) << endl;
cout << (str1 < str2) << endl;
cout << (str1 >= str2) << endl;
cout << (str1 <= str2) << endl;
cout << (str1 == str2) << endl;
MyString str4 = "Hello";
cout << str4 << endl;
return 0;
}
```
以上代码中,重载运算符的实现方式与普通函数是不同的。对于成员函数的运算符重载,需要在函数名前加上`operator`关键字,例如重载+运算符的函数名为`operator+`。对于非成员函数的运算符重载,需要在参数前加上对应的类名,例如重载>运算符的函数名为`operator>(const MyString& lhs, const MyString& rhs)`。
阅读全文