用C++自定义String类

一、头文件

cpp 复制代码
#pragma once
#include <iostream>

/**
 * 自定义String类
 */
class String 
{
public:
	String();
	String(const char *pstr);
	String(const String &str);
	~String();
	String &operator= (const String &str);
	String &operator= (const char *pstr);

	String &operator+= (const String &str);
	String &operator+= (const char *pstr);
	
	char &operator[] (std::size_t index);
	const char &operator[] (std::size_t index) const;
	
	std::size_t size() const;
	const char* c_str() const;
	
	friend bool operator== (const String &leftStr, const String &rightStr);
	friend bool operator!= (const String &leftStr, const String &rightStr);
	
	friend bool operator< (const String &leftStr, const String &rightStr);
	friend bool operator> (const String &leftStr, const String &rightStr);
	friend bool operator<= (const String &leftStr, const String &rightStr);
	friend bool operator>= (const String &leftStr, const String &rightStr);
	
	friend std::ostream &operator<< (std::ostream &os, const String &str);
    friend std::istream &operator>> (std::istream &is, String &str);

private:
	char * _pstr;
};

String operator+(const String &thisStr, const String &otherStr);
String operator+(const String &thisStr, const char *otherpStr);
String operator+(const char *thisPstr, const String &otherStr);

二、String实现

cpp 复制代码
#include <cstring>
#include "08_MyString.hh"

using namespace std;

/**
 * 无参构造函数
*/
String::String()
: _pstr(new char[1]{0}) 
{
	strcpy(_pstr, "");	
}

/**
 * 有参构造函数
*/
String::String(const char *pstr) 
: _pstr(new char[strlen(pstr) + 1]{0})
{
	strcpy(_pstr, pstr);
}

/**
 * 拷贝构造函数
*/
String::String(const String &str)
: _pstr(new char[strlen(str._pstr) + 1]{0})
{
	strcpy(_pstr, str._pstr);
}

/**
 * 析构函数
*/
String::~String() {
	delete [] _pstr;
}

/**
 * 重载赋值运算符函数
*/
String &String::operator=(const String &str) {
	if (this != &str) { // 跳过自赋值
		delete [] _pstr;
		_pstr = new char[strlen(str._pstr) + 1]{0};
		strcpy(_pstr, str._pstr);
	} 
	return *this; 
}
String &String::operator=(const char *pstr) {
	delete [] _pstr;
	_pstr = new char[strlen(pstr) + 1]{0};
	strcpy(_pstr, pstr);
	return *this;
}

/**
 * 重载+=
*/
String &String::operator+= (const String &str) {
	size_t newLen = strlen(_pstr) + strlen(str._pstr) + 1;
	char *newStr = new char[newLen]{0};
	strcat(newStr, _pstr);
	strcat(newStr, str._pstr);
	delete [] _pstr;
	_pstr = newStr;
	return *this;
}
String &String::operator+= (const char *pstr) {
	size_t newLen = strlen(_pstr) + strlen(pstr) + 1;
	char *newStr = new char[newLen]{0};
	strcat(newStr, _pstr);
	strcat(newStr, pstr);
	delete [] _pstr;
	_pstr = newStr;
	return *this;
}

/**
 * 重载下标运算符
*/
char &String::operator[] (size_t index) {
	if (index < strlen(_pstr)) { // 未越界
		return _pstr[index];
	}else {
		static char nullchar = '\0';
		return nullchar;
	}	
}
const char &String::operator[] (size_t index) const {
	if (index < strlen(_pstr)) { // 未越界
		return _pstr[index];
	}else {
		static char nullchar = '\0';
		return nullchar;
	}	
}

/**
 * 获取字符串长度
*/
size_t String::size() const {
	return strlen(_pstr);
}

/**
 * 返回C风格字符串
*/
const char *String::c_str() const {
	return _pstr;
}

/**
 * 重载==
*/
bool operator==(const String &leftStr, const String &rightStr) {
	return strcmp(leftStr._pstr, rightStr._pstr) == 0 ? true : false;
}
/**
 * 重载!=
*/
bool operator!=(const String &leftStr, const String &rightStr) {
	return strcmp(leftStr._pstr, rightStr._pstr) != 0 ? true : false;
}
/**
 * 重载<
*/
bool operator<(const String &leftStr, const String &rightStr) {
	return strcmp(leftStr._pstr, rightStr._pstr) < 0 ? true : false;
}
/**
 * 重载>
*/
bool operator>(const String &leftStr, const String &rightStr) {
	return strcmp(leftStr._pstr, rightStr._pstr) > 0 ? true : false;
}
/**
 * 重载<=
*/
bool operator<=(const String &leftStr, const String &rightStr) {
	int res = strcmp(leftStr._pstr, rightStr._pstr); 
	return res > 0 ? false : true;
}
/**
 * 重载>=
*/
bool operator>=(const String &leftStr, const String &rightStr) {
	int res = strcmp(leftStr._pstr, rightStr._pstr); 
	return res < 0 ? false : true;
}

/**
 * 重载输出流函数
*/
ostream &operator<< (ostream &os, const String &str) {
	os << str._pstr;
	return os;
}

/**
 * 重载输入流函数
*/
istream &operator>> (istream &is, String &str) {
	char buf[4096];
	is.getline(buf, sizeof(buf));
	delete [] str._pstr;
	str._pstr = new char[strlen(buf) + 1];
	strcpy(str._pstr, buf);
	return is;
}

/**
 * 重载+
*/
String operator+(const String &thisStr, const String &otherStr) {
	String temp(thisStr.c_str());
	temp+=otherStr.c_str();
	return temp;
}
String operator+(const String &thisStr, const char *otherPstr) {
	String temp(thisStr.c_str());
	temp+=otherPstr;
	return temp;
}
String operator+(const char *thisPstr, const String &otherStr) {
	String temp(thisPstr);
	temp+=otherStr.c_str();
	return temp;
}
相关推荐
Funny-Boy11 分钟前
菱形继承原理
c++
Nobkins2 小时前
2021ICPC四川省赛个人补题ABDHKLM
开发语言·数据结构·c++·算法·图论
海棠蚀omo2 小时前
C++笔记-红黑树
开发语言·c++·笔记
一个Potato3 小时前
C++笔试题(金山科技新未来训练营):
c++·科技
休息一下接着来3 小时前
C++ I/O多路复用
linux·开发语言·c++
龙湾开发3 小时前
计算机图形学编程(使用OpenGL和C++)(第2版)学习笔记 12.曲面细分
c++·笔记·学习·3d·图形渲染
darkchink4 小时前
[LevelDB]LevelDB版本管理的黑魔法-为什么能在不锁表的情况下管理数据?
c语言·数据库·c++·oracle·数据库开发·dba·db
易只轻松熊4 小时前
C++(23):容器类<vector>
开发语言·数据结构·c++
ha20428941944 小时前
c++学习之--- list
c语言·c++·学习·list
君鼎5 小时前
muduo库TcpServer模块详解
linux·网络·c++