【C++】定义自己的String类

举报
谙忆 发表于 2021/05/28 05:22:01 2021/05/28
【摘要】 我们自己写的String类具有以下函数 1.构造函数 String(const char *s); //用c字符串s初始化 String(int n,char c); //用n个字符c初始化12 2.拷贝和赋值 String& String(String& str); const String& operator=(String&amp...

我们自己写的String类具有以下函数

1.构造函数

String(const char *s); //用c字符串s初始化
String(int n,char c); //用n个字符c初始化
  
 
  • 1
  • 2

2.拷贝和赋值

String& String(String& str);
const String& operator=(String& str);
  
 
  • 1
  • 2

3.析构函数

~String();
  
 
  • 1

4.下标访问

重载下标访问运算符

char &operator[](int n);
char &at(int n)const;
  
 
  • 1
  • 2

5.String类提供的方法

int size()const; //返回当前字符串的大小,string内部不会在我们每一次的字符串连接的时候都会分配空间,
//它会多分配一些内存,下次连接时的字符串小于剩下的空间它就不用再为这个字符串分配另外的空间了。
//它分配的所有空间就是size,而字符串的实际长度length
int length()const; //返回当前字符串的长度
bool empty()const; //当前字符串是否为空
  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

6.重载流插入和提取运算符

为了方便输入和输出

istream& operator>>(istream& input, String& str);
ostream& operator<<(ostream& output, String& str);
  
 
  • 1
  • 2

7.连接两个字符串

重载+运算符

String &operator+=(String &s);
  
 
  • 1

8.字符串比较

bool operator==(const String &s1,const String &s2)const;
int compare(const string &s) const;//比较当前字符串和s的大小
  
 
  • 1
  • 2

这个实现的string类是比较简单的,C++标准模板库里面的string类的方法是非常多的,而且非常复杂。
在这里仅仅给大家演示string内部大概的实现方法

实例

String.h文件:类的声明

#ifndef STRING_H//头文件卫士,避免头文件被多次编译
#define STRING_H
#include<iostream>  //输入输出头文件
using namespace std; //命名空间
class String
{
public://公有的声明 String(const char*); //构造函数 String(int n,char c); //传入大小的构造函数 ~String(); //析构函数

public: String(String &str);  //拷贝构造函数 const String& operator=(const String& str);//赋值运算符重载,我们在不需要修改参数的值的地方都应该声明为const char operator[](int pos)const;//下标访问运算符重载 char at(int pos)const;//检查越界的下标访问 int size()const; //字符串的空间大小 int length()const; //字符串的字符大小 bool empty()const; //判断为空的函数 const String& operator+=(const String& str); //字符串的连接 bool operator==(const String& str);//字符串的相等判断 bool compare(const String& str);//字符串的相等判断 friend istream& operator>>(istream& input, String& str); //输入操作符的重载 friend ostream& operator<<(ostream& output, String& str); //输出操作符的重载
private: char* m_pBuff;//保存字符串的首地址 int m_nRealLen;  //字符串的字符大小 int m_nBuffSize;  //字符串的空间大小

};

#endif
  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36

String.cpp:类的实现

#include"String.h" //包含类的声明头文件

#define EXT_LEN 50  //定义一个宏,用户申请的内存大小,我们实际上为字符串分配的空间要多EXT_LEN,以便字符串的连接
String::String(const char* pStr)
{ m_nRealLen = strlen(pStr); //获得字符串的实际大小 m_pBuff = new char[m_nRealLen + EXT_LEN]; //实际分配的内存比字符串多了EXT_LEN //strcpy(m_pBuff, pStr);  //C提供的一个字符串函数,将后面参数的字符复制到第一个字符串后面,并添加一个结束字符\0,C中字符串的指针指向的是字符串的首地址,这个函数遇到\0以为字符串结束 memcpy(m_pBuff, pStr, m_nRealLen);  //内存拷贝,遇到\0不会结束,提供了需要拷贝的数据的长度 m_nBuffSize = m_nRealLen + EXT_LEN;  //计算字符串的空间大小
}

String::String(int n, char c)  //构造一个由n个一种字符串构成的字符串
{ m_pBuff = new char[n + EXT_LEN];  //实际分配的内存比字符串多了EXT_LEN for (int i = 0; i < n; i++) { m_pBuff[i] = c;  //利用下标运算符和循环赋值 } m_nRealLen = n;  //赋值字符串大小 m_nBuffSize = n + EXT_LEN;  //分配的空间大小
}

String::~String()
{ if (m_pBuff)   //判断字符串指针是否为空 { delete[] m_pBuff; m_pBuff = NULL;  //避免野指针的产生 } m_nRealLen = 0;  //对字符串的长度清零 m_nBuffSize = 0; //对分配的空间清零 
}

String::String(String& str)
{ //这里不用判断 左操作数的字符串首地址是否指向内存,就销毁再指向空 //因为左操作数m_pBuff开始没有赋值,默认会指向一个无法访问的地址,在这里销毁无法访问的地址,就会出现异常 //if (m_pBuff) //如果左操作数的字符串首地址指向内存,就销毁再指向空 //{ //  delete[]m_pBuff; //  m_pBuff = NULL; //} m_pBuff = new char[str.length() + EXT_LEN];//重新分配一段空间 //strcpy(m_pBuff, str.m_pBuff); memcpy(m_pBuff, str.m_pBuff, str.length());  //字符串的拷贝 m_nRealLen = str.length();   //实际长度等于字符串的字符长度 m_nBuffSize = m_nRealLen + EXT_LEN;
}

const String& String::operator=(const String& str)
{ if (this == &str)  //避免自赋值 { return *this; } if (m_pBuff) //如果左操作数的字符串首地址指向内存,就销毁再指向空 { delete[]m_pBuff; m_pBuff = NULL; } m_pBuff = new char[str.length() + EXT_LEN];  //分配空间 //strcpy(m_pBuff, str.m_pBuff); memcpy(m_pBuff, str.m_pBuff, str.length()); m_nRealLen = str.length(); m_nBuffSize = m_nRealLen + EXT_LEN; return *this;  //返回左操作数的引用
}

char String::operator[](int nPos)const
{ return m_pBuff[nPos];  //使用了C里面字符串的下标访问
}

char String::at(int nPos)const
{ if (nPos >= m_nRealLen)  //如果给出的下标超出了字符串的实际长度,就抛出一个异常 { //throw exception } return m_pBuff[nPos];
}

int String::size()const
{ return m_nBuffSize;  //返回字符串的空间大小
}

int String::length()const
{ return m_nRealLen;  //返回字符串的字符大小
}

bool String::empty()const
{ return !m_nRealLen;  //根据字符串的实际长度返回是否为空
}

const String& String::operator+=(const String& str)
{ if (m_nBuffSize - m_nRealLen >= str.length())  
//计算 空间大小减去字符大小 剩余的分配了的但是没有使用的空间 是否可以连接后面的字符串,
//如果可以不用再次分配空间直接连接,就不用再分配空间了。 { //strcat(m_pBuff, str.m_pBuff); memcpy(m_pBuff + m_nRealLen, str.m_pBuff, str.length()); m_nRealLen = m_nRealLen + str.length(); } else  //需要重新分配空间情况 { int nLen = m_nRealLen + str.length(); char*p = new char[nLen + EXT_LEN]; //strcpy(p, m_pBuff); memcpy(p, m_pBuff, m_nRealLen); //将前面的字符串拷贝到新申请的空间中 //strcpy(p + m_nRealLen, str.m_pBuff); memcpy(p + m_nRealLen, str.m_pBuff, str.length()); //因为新空间已经有了一个字符串,我们不能再从首地址拷贝开始了,我们将首地址加上已经拷贝过去的字符串的长度, //从这个位置开始后面没有拷贝字符串的位置拼接好第二个字符串 m_nRealLen = nLen; m_nBuffSize = nLen + EXT_LEN; if (m_pBuff)  //如果前面的字符串不是空的,我们就删除前面拼接之前的第一个字符串 { delete[]m_pBuff; } m_pBuff = p;  //将拼接好的字符串赋值给对象指向字符串首地址的指针 } return *this;
}
istream& operator>>(istream& input, String& str)
{ std::cin.get(str.m_pBuff, str.size(), '\n'); //不直接使用cin是怕cin的输入没有结束或者字符串的长度导致越界,这个是c的一个读入指定长度字符串的函数, //该函数将str.size()长度的字符串读取到str.m_pBuff中,第三个字符是结束字符,即使没有达到指定长度,遇到这个字符也会结束的。 return input;
}
ostream& operator<<(ostream& output, String& str)
{ for (int i = 0; i < str.length(); i++) //因为cout对字符串的输出是以\0来结束输出,我们使用的memcpy函数是不会在字符串的结尾自动加入结束符号\0, //所以我们需要利用循环和它的实际长度来实现遍历输出 { std::cout.put(str[i]);  //每次向屏幕输出一个字符 } return output;
}
  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154

main.cpp:测试String类的功能

#include<iostream>
#include"String.h"

int main()
{ String str("Hello String!");  //一个参数的构造函数 std::cout << str << std::endl; String str2(10, 'a');  //提供由一个字符组成的字符串 std::cout << str2 << std::endl; str2 = str;  //调用=运算符重载的函数 std::cout << str2 << std::endl; String str3 = str2;   //调用拷贝构造函数 std:cout << str3 << std::endl; std::cout << "size:" << str3.size() << ", lenght:" << str3.length() << std::endl; str3 += "abcdkdkd";   //拼接两个字符串,测试字符串的连接 std::cout << str3 << std::endl; std::cout << "size:" << str3.size() << ", lenght:" << str3.length() << std::endl; String str4(50, 'a'); str3 += str4; std::cout << str3 << std::endl; std::cout << "size:" << str3.size() << ", lenght:" << str3.length() << std::endl; getchar(); return 0;
}
  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

演示结果

在这里我们只是学习怎么去创建一个类,实现这个类,运算符的重载和友元函数…进行了简单的测试

源代码下载地址:

GITHUB源码下载地址: 点我进行下载

本文章由[谙忆]编写, 所有权利保留。
欢迎转载,分享是进步的源泉。

转载请注明出处:http://chenhaoxiang.cn/2017/10/04/1338/

本文源自谙忆的博客

文章来源: chenhx.blog.csdn.net,作者:谙忆,版权归原作者所有,如需转载,请联系作者。

原文链接:chenhx.blog.csdn.net/article/details/79182488

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。