bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

自己模擬寫C++中的String類型實例講解-創新互聯

下面是模擬實現字符串的相關功能,它包括一下功能:

創新互聯主營資興網站建設的網絡公司,主營網站建設方案,重慶APP開發公司,資興h5重慶小程序開發搭建,資興網站營銷推廣歡迎資興等地區企業咨詢

String(const char * s);//利用字符串來初始化對象
String();      //默認構造函數
String(const String & s);//復制構造函數,利用String類型來初始化對象
~String();      //析構函數
int length();      //返回String類型中字符串的長度
String & operator=(const String & s);//重載=運算符。
String & operator=(const char *);
char & operator[](int i);  //重載【】運算符
const char & operator[](int i) const;
friend bool operator<(const String & st,const String & st2);//重載<運算符,用來比較String類型中字符串的大小。
friend bool operator>(const String & st,const String & st2);
friend bool operator==(const String & st,const String & st2);//重載==運算符,判斷兩個String對象是否相等
friend ostream & operator<<(ostream & os,const String & st2);//重載輸出函數
friend istream & operator>>(istream & is,String & st2);//重載輸入函數
static int HowMang()//返回總共生成的String類對象的數目。

String.h:

#ifndef STRING_H_INCLUDED
#define STRING_H_INCLUDED
#include"iostream"
#include<string.h>
using std::ostream;
using std::istream;
class String{
private:
  char * str;
  int len;
public:
  static int num_strings;
  static const int CINLM=80;
  String(const char * s);
  String();
  String(const String & s);
  ~String();
  int length();
  String & operator=(const String & s);
  String & operator=(const char *);
  char & operator[](int i);
  const char & operator[](int i) const;
  friend bool operator<(const String & st,const String & st2);
  friend bool operator>(const String & st,const String & st2);
  friend bool operator==(const String & st,const String & st2);
  friend ostream & operator<<(ostream & os,const String & st2);
  friend istream & operator>>(istream & is,String & st2);
  static int HowMang()
  {
    return num_strings;

  }
};


#endif // STRING_H_INCLUDED

另外有需要云服務器可以了解下創新互聯建站vcdvsql.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業上云的綜合解決方案,具有“安全穩定、簡單易用、服務可用性高、性價比高”等特點與優勢,專為企業上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。

當前文章:自己模擬寫C++中的String類型實例講解-創新互聯
本文網址:http://vcdvsql.cn/article44/phihe.html

成都網站建設公司_創新互聯,為您提供ChatGPT關鍵詞優化移動網站建設云服務器動態網站建站公司

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

成都網站建設