C++ Programmer's Cookbook

{C++ 基础} {C++ 高级} {C#界面,C++核心算法} {设计模式} {C#基础}

不完整得cstring类

//////经典string

 

char * strcpy(char *strdest,const char *strsrc)
{
 ASSERT(strdest!=NULL&&strsrc!=NULL);
    char * temp= strdest;
 while((* strdest++=* strsrc++)!='\0')
  NULL
  return temp;

}//为了实现链式表达式

 

class String
{
public:
String(const char str[]);/////
String(const char ch,  const int num);////
String(const char * str=NULL);
String(const string &other);
~String(void);
String & operator=(const sting & other);
char& operator[]( int ) const;//////
bool operator==( const String &str );/////
private:
char * m_data;
};

String(const char * str=NULL)   ////普通的构造函数
{
     if(str==NULL)
  { m_data=new char;
    *m_data='\0';
  }
  else
  {
   int length=strlen(str);
   m_data=new char[length];
         strcpy(m_data,str);
  }
}
String(const string &other)     /////拷贝构造函数
{
 int length=strlen(other.m_data);
 m_data=new char[length+1];
 strcpy(m_data,other.m_data);

}
~String(void)                           ////析构函数
{
   delete [] m_data;
}

String & operator=(const sting & other)     /////赋值函数
{
 if(this=other)
  return *this;
 delete m_data;
 int length=strlen(other.m_data);
 m_data=new char[length+1];
 strcpy(m_data,other.m_data);
    return *this;

}

posted on 2005-11-09 13:03 梦在天涯 阅读(639) 评论(0)  编辑 收藏 引用 所属分类: CPlusPlus


只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理


公告

EMail:itech001#126.com

导航

统计

  • 随笔 - 461
  • 文章 - 4
  • 评论 - 746
  • 引用 - 0

常用链接

随笔分类

随笔档案

收藏夹

Blogs

c#(csharp)

C++(cpp)

Enlish

Forums(bbs)

My self

Often go

Useful Webs

Xml/Uml/html

搜索

  •  

积分与排名

  • 积分 - 1795786
  • 排名 - 5

最新评论

阅读排行榜