- 1、本文档共13页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C程序代码-类串示范程序
#includeiostream.h
#includestdio.h
#includestdlib.h
#includecstring
#includestringclass.h
String::String(const char *c)//缺省构造函数
{
size=strlen(c);
str=new char[size+1];
if(str==NULL)
Error(String:overflow!);
strcpy(str,c);
}
String::String(const String s)//复制构造函数
{
size=s.size;
str=new char[size+1];
if(str==NULL)
Error(String:overflow!);
strcpy(str,s.str);
}
String::~String()
{
delete[]str;
}
void String::Error(const char* c)const
{
coutcendl;
exit(1);
}
String String::operator+(const String s)const//类串+类串
{
String w;
int len=size+s.size;
delete[]w.str;
w.str=new char[len+1];
if(w.str==NULL)
Error(operator+:overflow!);
strcpy(w.str,str);
strcat(w.str,s.str);
w.size=len;
return(w);
}
String String::operator+(const char *c)const //类串+C串
{
String w;
int len=size+strlen(c);
delete[]w.str;
w.str=new char[len+1];
if(w.str==NULL)
Error(operator+:overflow!);
strcpy(w.str,str);
strcat(w.str,c);
w.size=len;
return(w); //相当于String _temp=w; 调用复制构造函数
}
String operator+(const char *c,const String s1)//C串+类串
{
String w;//不能简化为return(s1+c),因为连接后的串顺序不对
delete[]w.str;
w.size=strlen(c)+s1.size;
w.str=new char[w.size+1];
if(w.str==NULL) //友元不能直接调用私有函数Error
s1.Error(operator+:overflow!);
strcpy(w.str,c);
strcat(w.str,s1.str);
return(w);
}
String String::operator=(const String s)//复制赋值:类串=类串
{
if(size!= s.size)
{
delete[]str;
str=new char[s.size+1];
if(str==NULL)
Error(operator=:overflow!);
size=s.size;
}
strcpy(str, s.str);
return(*this);
}
String String::operator=(const char *c) //转换赋值:类串=C串
{
int len=strlen(c);
if(size!=len)
{
delete[]str;
str=new char[len+1];
if(str==NULL)
Error(operator=:overflow!);
size=len;
}
strcpy(str,c);
return(*this);
}
String String::SubStr(int id,int num)const//取子串
{
String s;
int len=size;
int left=len-id,i;
if(id0||idlen-1)
Error(id illegal!);
if(num=0||numleft)
Error(num illegal!);
delete[]s.str;
s.str=new char[num+1];
if(s.str==NULL)
Error(overflow
文档评论(0)