用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;
}
相关推荐
熬夜学编程的小王16 分钟前
C++类与对象深度解析(一):从抽象到实践的全面入门指南
c++·git·算法
CV工程师小林18 分钟前
【算法】DFS 系列之 穷举/暴搜/深搜/回溯/剪枝(下篇)
数据结构·c++·算法·leetcode·深度优先·剪枝
zh路西法1 小时前
基于opencv-C++dnn模块推理的yolov5 onnx模型
c++·图像处理·pytorch·opencv·yolo·dnn·yolov5
-指短琴长-1 小时前
BFS解决多源最短路问题_01矩阵_C++【含多源最短路问题介绍+dist数组介绍】
c++·矩阵·宽度优先
小码农<^_^>1 小时前
c++继承(下)
开发语言·c++
盒马盒马1 小时前
Redis:cpp.redis++通用接口
数据库·c++·redis
无夜_2 小时前
Prototype(原型模式)
开发语言·c++
刘好念3 小时前
[图形学]smallpt代码详解(1)
c++·计算机图形学
fpcc3 小时前
并行编程实战——TBB框架的应用之一Supra的基础
c++·并行编程
兵哥工控3 小时前
MFC工控项目实例二十二主界面计数背景颜色改变
c++·mfc