第八周 项目四-string类的构造

请构造String类的加、减运算。其中,s1 + s2将两个字符串的连接起来;s1 - s2是将s1的尾部空格和s2的前导空格去除后的连接。

提示:有指针成员,设计时要注意。这个,你懂的。

#include <iostream>
#include <Cstring>
using namespace std;
class String
{
public:
    String( );                         //默认构造函数
    String(const char *s);
    String(String &str);               //构造函数
    ~String();
    void display( );
    friend String operator + (String &s1,String &s2 );
    friend String operator - (String &s1,String &s2 );
private:
    char *p;
    int len;                                       //字符型指针,用于指向字符串
};
String::String()
{
    len = 0;
    p = NULL;
}
String::String(const char *s)
{
    len = strlen(s);
    p = new char[len+1];
    strcpy(p,s);
}

String::String(String &str)
{
    len = str.len;
    if(p!=NULL) delete []p;   //当发生在赋值等情形时,原对象可能已经存在,需释放原有空间
    p = new char[len+1];
    strcpy(p,str.p);
}

String::~String()
{
    if(!p) delete []p;
}

void String::display( )     //输出p所指向的字符串
{
    cout<<p<<endl;
}

String operator + (String &s1, String &s2 )
{
    String s;
    s.len = s1.len+s2.len;
    s.p = new char[s.len+1];   //原误写char(s.len+1)
    strcpy(s.p,s1.p);
    strcat(s.p,s2.p);
    return s;
}

String operator - (String &s1, String &s2 )
{
    String s;
    //c1为截去尾部空格的字符串
    char *c1=new char[s1.len+1];
    strcpy(c1,s1.p);
    int i=s1.len-1;
    while(i>=0&&c1[i]==' ') --i;
    c1[i+1]='\0';

    //c2为去除前导空格的字符串
    char *c2=new char[s2.len+1];
    strcpy(c2,s2.p);
    i=0;
    while(i<s2.len&&c2[i]==' ') ++i;
    int j=0;
    while(i<s2.len&&c2[i]!='\0')
    {
        c2[j]=c2[i];
        ++i;
        ++j;
    }
    c2[j]='\0';

    //将这两部分接起来
    s.len = strlen(c1)+strlen(c2);
    s.p = new char[s.len+1];     //原误写char(s.len+1)
    strcpy(s.p,c1);
    strcat(s.p,c2);
    delete c1;
    delete c2;
    return s;
}

int main( )
{
    String string1(" Hello  "), string2(" World ");
    string1.display();
    string2.display();
    String string3;
    string3 = string1 + string2;
    string3.display();
    string3 = string1 - string2;
    string3.display();
    return 0;
}

运行结果:

知识点总结:

用指针对字符串进行操作

请构造String类的加、减运算。其中,s1 + s2将两个字符串的连接起来;s1 - s2是将s1的尾部空格和s2的前导空格去除后的连接。

提示:有指针成员,设计时要注意。这个,你懂的。

学习心得:

好好学习 天天向上

时间: 2024-10-15 05:11:58

第八周 项目四-string类的构造的相关文章

第八周项目四-String类的构造

写一个能处理字符串的类. #include <iostream> #include <Cstring> using namespace std; class String { public: String( ); //默认构造函数 String(const char *s); String(String &str); //构造函数 ~String(); void display( ); friend String operator + (String &s1,Str

第八周项目3-分数类中的运算符重载

实现分数类中的运算符重载,在分数类中可以完成分数的加减乘除(运算后再化简).比较(6种关系)的运算.可以在第4周分数类代码的基础上开始工作. /* * Copyright (c) 2015,烟台大学计算机学院 * All right reserved. * 作者:邵帅 * 文件:Demo.cpp * 完成时间:2015年04月29日 * 版本号:v1.0 */ #include <iostream> using namespace std; class CFraction { private:

第八周项目三-分数类中的运算符重载

实现分数类中的运算符重载,在分数类中可以完成分数的加减乘除(运算后再化简).比较(6种关系)的运算.可以在第4周分数类代码的基础上开始工作. /* * Copyright (c) 2015,烟台大学计算机学院 * All right reserved. * 作者:赵嵩 * 文件:Demo.cpp * 完成时间:2015年05月16日 * 版本号:v1.0 */ #include <iostream> using namespace std; class CFraction { private:

第八周 项目一-复数类中的运算符重载(3)完整产品

定义一个定义完整的类(是可以当作独立的产品发布,成为众多项目中的"基础工程").这样的类在(2)的基础上,扩展+.-.*./运算符的功能,使之能与double型数据进行运算.设Complex c; double d; c+d和d+c的结果为"将d视为实部为d的复数同c相加",其他-.*./运算符类似 /* * Copyright (c) 2015, 烟台大学计算机学院 * All rights reserved. * 文件名称:test.cpp * 作 者:冷基栋

第八周 项目一-复数类中的运算符重载(1)

问题: (1)请用类的成员函数,定义复数类重载运算符+.-.*./,使之能用于复数的加减乘除 class Complex { public: Complex(){real=0;imag=0;} Complex(double r,double i){real=r; imag=i;} Complex operator+(const Complex &c2); Complex operator-(const Complex &c2); Complex operator*(const Comple

第八周项目二-Time类中的运算符重载

实现Time类中的运算符重载 class CTime { private: unsigned short int hour; // 时 unsigned short int minute; // 分 unsigned short int second; // 秒 public: CTime(int h=0,int m=0,int s=0); void setTime(int h,int m,int s); void display(); //二目的比较运算符重载 bool operator >

十一周 项目三 点类

#include<iostream> #include<Cmath> using namespace std; class Point //定义坐标点类 { public: Point():x(0),y(0) {}; Point(double x0, double y0):x(x0),y(y0){}; void PrintPoint(); //输出点的信息 double getx() { return x; } double gety() { return y; } protect

第14周项目4-立体类族共有的抽象类

/* *Corpyright (c)2013,烟台大学计算机学院 *All right reseved. *作者:张凯 *完成日期:2014年5月28日 *版本号:v1.0 *输入描述: *问题描述: *程序输出: *问题分析: *算法设计: */ #include<iostream> #include<cstring> using namespace std; class CSolid { public: virtual double area()=0; virtual doub

14周 项目3 立体类族共有的抽象类

#include <iostream> using namespace std; class CSolid { public: virtual double area() const=0; virtual double volume() const=0; }; class CCube:public CSolid { public: CCube(double s):side(s) {} virtual double area()const { return 6*side*side; } virt