String类的简易实现,用到了构造函数、析构函数、重载运算符、拷贝构造函数、友元函数等知识

String类的简易实现,用到了构造函数、析构函数、重载运算符、拷贝构造函数、友元函数等知识

参考资料:《高质量C++C编程指南》

运行平台:VS2008

Cpp代码 复制代码 收藏代码
  1. #include<iostream> 
  2. using namespace std; 
  3.  
  4. class String 
  5. public
  6.     String(const char *str = NULL); 
  7.     String(const String &other); 
  8.     ~String(void); 
  9.     String & operator=(const String &other); 
  10.     bool operator==(const String &str); 
  11.     friend ostream & operator<<(ostream& o,const String &str); 
  12. private
  13.     char *m_data; 
  14. }; 
  15.  
  16. /*
  17.     构造、析构、拷贝构造、赋值运、流输出运算
  18. */ 
  19.  
  20. String::String(const char *str) 
  21.     if (str == NULL){ 
  22.         m_data = new char[1]; 
  23.         *m_data='\0'
  24.     }else
  25.         int len=strlen(str); 
  26.         m_data = new char[len+1]; 
  27.         strcpy(m_data,str); 
  28.     } 
  29. String::~String(void
  30.     delete [] m_data; 
  31.  
  32. String::String(const String &other) 
  33.     int len = strlen(other.m_data); 
  34.     m_data = new char[len+1]; 
  35.     strcpy(m_data,other.m_data); 
  36.  
  37. String & String::operator=(const String &other) 
  38.     if (this == &other) 
  39.         return *this
  40.  
  41.     delete []m_data; 
  42.  
  43.     int len = strlen(other.m_data); 
  44.     m_data = new char[len+1]; 
  45.     strcpy(m_data,other.m_data); 
  46.  
  47.     return *this
  48.  
  49. bool String::operator==(const String &str) 
  50.     return strcmp(m_data,str.m_data) == 0; 
  51.  
  52. ostream & operator<<(ostream &o,const String &str) 
  53.     o<<str.m_data; 
  54.     return o; 
  55.  
  56. int main() 
  57.     String s = "hello"
  58.     String s2 = s; 
  59.     String ss = "hello"
  60.     cout<<"s = "<<s<<endl; 
  61.     cout<<"s2 = "<<s2<<endl; 
  62.     cout<<boolalpha<<(ss == s)<<endl; 
  63. }

转自:http://rsljdkt.iteye.com/blog/770072

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值