#include<iostream>
using namespace std;
 
class String{
    friend ostream& operator<< (ostream&,String&);
public:
    String(const char* str=NULL);                //赋值构造兼默认构造函数(char)
    String(const String &other);                   //赋值构造函数(String)
    String& operator=(const String&other);         //operator=
    String operator+(const String &other)const;  //operator+
    bool operator==(const String&);              //operator==
    char& operator[](unsigned int);                 //operator[]
    size_t size(){return strlen(m_data);};
    ~String(void) {delete[] m_data;}
private:
    char *m_data;
};
inline String::String(const char* str)
{
    if (!str) m_data=0;
    else
    {
        m_data = new char[strlen(str)+1];
        strcpy(m_data,str);
    }
}
inline String::String(const String& other)
{
    if(!other.m_data) m_data=0;
    else
    {
        m_data=new char[strlen(other.m_data)+1];
        strcpy(m_data,other.m_data);
    }
}
inline String& String::operator=(const String& other)
{
    if (this!=&other)
    {
        delete[] m_data;
        if(!other.m_data) m_data=0;
        else
        {
            m_data = new char[strlen(other.m_data)+1];
            strcpy(m_data,other.m_data);
        }
    }
    return *this;
}
inline String String::operator+(const String &other)const
{
    String newString;
    if(!other.m_data)
        newString = *this;
    else if(!m_data)
        newString = other;
    else
    {
        newString.m_data = new char[strlen(m_data)+strlen(other.m_data)+1];
        strcpy(newString.m_data,m_data);
        strcat(newString.m_data,other.m_data);
    }
    return newString;
}
inline bool String::operator==(const String &s)   
{
    if ( strlen(s.m_data) != strlen(m_data) )
        return false;
    return strcmp(m_data,s.m_data)?false:true;
}
inline char& String::operator[](unsigned int e)
{
    if (e>=0&&e<=strlen(m_data))
        return m_data[e];
}
ostream& operator<<(ostream& os,String& str)
{
    os << str.m_data;
    return os;
}
void main()
{
    String str1="Hello!";
    String str2="Teacher!";
    String str3 = str1+str2;
    cout<<str3<<"\n"<<str3.size()<<endl;
    cin.ignore(100, '\n');
    cin.get();
}

最新文章

  1. hibernate中java类的成员变量类型如何映射到SQL中的数据类型变化
  2. linux系统下获取IP,MAC,子网掩码,网关
  3. JSON字符串如何转化成对象?
  4. move
  5. c++ 从标注输入流读取行
  6. TreeView
  7. 初话C++模板【用自己的话,解释清楚这些】
  8. ios7自带的晃动效果
  9. Date()创建日期
  10. Linux之文件过滤分割与合并
  11. Servlet3.0上传图片示例
  12. Sparse Principal Component Analysis
  13. HTML查漏补缺 【未完】
  14. cache、session、cookie的区别
  15. 使用Scratch进行少儿编程
  16. linux下修改时间和时区
  17. windows上使用tensorboard
  18. 探秘小程序(7):view组件
  19. Day5 函数递归,匿名、内置行数,模块和包,开发规范
  20. sql backup

热门文章

  1. struts2的 defalut-action-ref 的使用
  2. 九度OJ 1024:畅通工程 (最小生成树)
  3. CNN延拓至 复数域
  4. 解决win7打印机共享出现“无法保存打印机设置(错误0x000006d9)的问题
  5. shell执行lua脚本传参数
  6. 《程序员代码面试指南》第七章 位运算 在其他数都出现k 次的数组中找到只出现一次的数
  7. 最全面的HashMap和HashTable的区别
  8. TCP/IP协议数据包文件PCAP分析器
  9. linux标准输入输出与重定向
  10. wordpress汇总(持续更新)