第八周(字符串类)
来源:程序员人生 发布时间:2015-06-01 08:59:11 阅读次数:2521次
/*
*copyright(c) 2015,烟台大学计算机学院
*All rights reserved。
*文件名称:第8周(字符串类)
*作者:王忠
*完成日期:2015.4.29
*版本号:v1.0
*
*问题描写:构造String类的加、减运算。其中,s1 + s2将两个字符串的连接起来;s1 - s2是将s1的尾部空格和s2的前导空格去除后的连接。
提示:有指针成员,设计时要注意。
*输入描写:
*程序输出:
#include <iostream>
#include <cstring>
using namespace std;
class String
{
public:
String()
{
len=0;
p=NULL;
}
String(const char *s);
String(String &s);
~String()
{
if(!p)//if p不是空指针
delete []p;
}
String operator+(String &s);
String operator-(String &s);//需要的成员函数(若需要的话,声明友元函数)
void display()
{
cout<<p<<endl;
}
private:
char *p; //指向存储的字符串
int len; //记录字符串的长度
};
String::String(const char *s)
{
len=strlen(s);
p=new char[len+1];
strcpy(p,s);
}
String::String(String &s)
{
len=s.len;
if(p!=NULL)delete[]p;
p=new char [len+1];
strcpy(p,s.p);
}
String String::operator+(String &s)
{
String s2;
s2.len=len+s.len;
s2.p=new char[s2.len+1];
strcpy(s2.p,p);
strcat(s2.p,s.p);
return s2;
}
String String::operator-(String &s)
{
char *c1=new char[len+1];
strcpy(c1,p);
int i=len⑴;
while(i>=0&&c1[i]==' ')
i--;
c1[i+1]='