• 设计一个字符串类String(C++练习题)


    要求:设计一个字符串类String,可以求字符串长度,可以连接两个串(如,s1=“计算机”,s2=“软件”,s1与s2连接得到“计算机软件”),并且重载“=”运算符进行字符串赋值,编写主程序实现:s1="计算机科学",s2=“是发展最快的科学!”,求s1和s2的串长,连接s1和s2

    #include "stdafx.h"
    #include <iostream>
    #include <string>
    using namespace std;
    
    class String
    {
    
        char str[255];
    
    public:
        String(){str[0]='';}
        String(char* s){strcpy_s(str,s);}
        String(String &s){strcpy_s(str,s.str);}
    
        String &operator=(String &);
        String &operator=(char*);
        
        void display(){cout<<str<<endl;}
        void strPlus(String);
        int strLen(){return strlen(str);}
    
    };
    String& String::operator =(String &s)
    {
        if(this==&s)return *this;
        strcpy_s(str,s.str);
        return *this;
    
    }
    String& String::operator =(char *s)
    {
        strcpy_s(str,s);
            return *this;
    }
    
    void String::strPlus(String s)
    {
        int i=strLen();
        int j=s.strLen();
        int k=0;
        while(k<=j)
        {
            str[i++]=s.str[k++];
        }
    }
    
    int _tmain()
    {
        String s1("计算机");
        String s2("软件");
        s1.strPlus(s2);
        s1.display();
        String s3="计算机科学";
        String s4="是发展最快的科学!";
        cout<<"求串长:计算机科学="<<s3.strLen()<<endl;
        cout<<"求串长:是发展最快的科学!="<<s4.strLen()<<endl;
        s3.strPlus(s4);
        s3.display();
        getchar();
        return 0;
    }
  • 相关阅读:
    第24课 #pragma使用分析
    第23课 #error和#line使用分析
    第22课 条件编译使用分析
    第21课 宏定义与使用分析
    Codeforces Round #142 (Div. 2)B. T-primes
    SPOJ XMAX
    Uva 10036
    Timus 1009. K-based Numbers
    MBLAST
    ROADS
  • 原文地址:https://www.cnblogs.com/junjunjun123/p/10049344.html
Copyright © 2020-2023  润新知