首页 > 代码库 > C++实现类String--含构造函数以及重载>>,<<,>,<,==,=
C++实现类String--含构造函数以及重载>>,<<,>,<,==,=
编写类String的构造函数、析构函数和赋值函数。
重载了输入(>>),输出(<<),大于(>),小于(<),赋值(=),等于(==)运算符。
因为篇幅原因,没有写关于strlen(),strcpy()函数的实现.
//String 类//用到了strlen、strcpy函数#include<iostream>#include<string>using namespace std;class String{public: String(const char *str=NULL);//构造普通函数 String(const String &other);//拷贝构造函数 ~String(void); String &operator=(const String &other);//重载= friend bool operator==(const String &s1,const String &s2);//重载== friend bool operator>(const String &s1,const String &s2);//重载> friend bool operator<(const String &s1,const String &s2);//重载< friend ostream &operator<<(ostream &,const String &other);//重载<< friend istream &operator>>(istream &,String &other);//重载>>private: char *m_data;};String::String(const char *str){ if(str==NULL) { m_data=http://www.mamicode.com/new char[1];>
C++实现类String--含构造函数以及重载>>,<<,>,<,==,=
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。