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

代碼分析c++中string類-創(chuàng)新互聯(lián)

一:回顧

創(chuàng)新互聯(lián)公司從2013年開始,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項目成都網(wǎng)站設(shè)計、成都網(wǎng)站制作、外貿(mào)網(wǎng)站建設(shè)網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元嵩明做網(wǎng)站,已為上家服務(wù),為嵩明各地企業(yè)和個人服務(wù),聯(lián)系電話:18982081108

(1)c++中的string類是在面試中和筆試中經(jīng)常考的題目; 工程代碼免費下載 string類的自行實現(xiàn)

(2)c++中的string類和fstream類合起來是處理外部數(shù)據(jù)的利器;

(3)string類經(jīng)常用到find find_first_of find_first_not_of find_last_of find_last_not_of substr replace等,以及聯(lián)合使用來達到j(luò)ava中的split和trim

(4) 使用friend 僅僅是在類中進行聲明的非內(nèi)部 卻可以訪問內(nèi)部成員的外部函數(shù),而且在外部不再需要friend關(guān)鍵字;它與成員函數(shù)的區(qū)別是,friend和外部函數(shù)不含有this對象指針;本文用到了const 定義的全局大值最小值變量(代替#define)

(5) 有些函數(shù)返回的是MyString& 、Char& 等(引用),MyString、Char 等(傳值)這得看你返回的對象是函數(shù)的局部變量還是全局變量(或者類當(dāng)前對象成員變量);前者只能返回一個MyString、Char 等;后者強烈建議返回MyString& 、Char& 等(引用);

(6)有些函數(shù)的參數(shù)是const MyString& ,有些是MyString& (引用);這是為什么?前者是把外部值傳提到子函數(shù)內(nèi)部,且不允許改變;后者是作為函數(shù)的返回值傳遞進去的,返回的結(jié)果為函數(shù)的處理結(jié)果(而不用函數(shù)自身返回值了)。

二:下面是簡單的實現(xiàn)了一下string類,參照的是STL源碼,但是自己理解的還是不夠深,難免有一些錯誤,請各位指教

(1)MyString.h文件

#ifndef MYSTRING_H
#define MYSTRING_H
#include "MyExcept.h"
#include <cstring>
#include <iostream>
const int INI_MAX = 0x7fffffff;//2^32npos
const int INI_MIN = 0x80000000;// -2^32
const int npos = 0xffffffff;// npos
using namespace std;

class MyString
{
  public:
  // constructor
  MyString();//
  MyString(const MyString &);//
  MyString(const char *);
  MyString(const size_t,const char);
  // destructor
  ~MyString();
  // attributes

  size_t length();// 字符串長度
  bool isEmpty();// 返回字符串是否為空
  const char* c_str();// 返回c風(fēng)格的trr的指針
  // friend funs
  // read writer operations
  friend ostream& operator<< (ostream&, const MyString&);
  friend istream& operator>> (istream&, MyString&);
  //add operation
  friend MyString operator+(const MyString&,const MyString&);
  // compare operations
  friend bool operator==(const MyString&,const MyString&);
  friend bool operator!=(const MyString&,const MyString&);
  friend bool operator<(const MyString&,const MyString&);
  friend bool operator<=(const MyString&,const MyString&);
  friend bool operator>(const MyString&,const MyString&);
  friend bool operator>=(const MyString&,const MyString&);
  // 成員函數(shù)實現(xiàn)運算符重載,其實一般需要返回自身對象的,成員函數(shù)運算符重載會好一些
  // index operation
  char& operator[](const size_t);
  const char& operator[](const size_t)const;
  // =
  MyString& operator=(const MyString&);
  // +=
  MyString& operator+=(const MyString&);
  // +=
  //MyString operator+=(const MyString&); cannot be overloaded
  // 成員操作函數(shù)
  // substr
  MyString substr(size_t pos,const size_t n);
  // append
  MyString& append(const MyString&);
  //insert
  MyString& insert(size_t,const MyString&);
  //assign 替換
  MyString& assign(MyString&,size_t,size_t);
  // erase 刪除
  MyString& erase(size_t,size_t);
  //find_first_of 查找某一個字符 size_t 是非符號數(shù)的,重載
  // 查找在字符串中第一個與str中的某個字符匹配的字符,返回它的位置。
  //搜索從index開始,如果沒找到就返回string::npos
  int find_first_of(const char* str,size_t index=0);
  int find_first_of(const char ch,size_t index=0);
  int find_first_of(const MyString &,size_t index=0);
  // 在字符串中查找第一個與str中的字符都不匹配的字符,返回它的位置。搜索從index開始。如果沒找到就返回string::nops
  int find_first_not_of(const char* str,size_t index=0);
  int find_first_not_of(const char ch,size_t index=0);
  int find_first_not_of(const MyString&,size_t index=0);
  // swap
  void swap(MyString& lhs,MyString& rhs);
  // replace_all
  MyString& replace_all(const char oldc,const char newc=NULL);
  MyString& replace(size_t index,size_t num1,size_t num2,const char ch);
  //find
  int find(const char* str,size_t index=0);
  int find(const MyString& str,size_t index=0);
  int find(const char ch,size_t index=0);


  //private
  private:
  char *p_str;
  size_t strLength;
};
#endif // MYSTRING_H

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

分享名稱:代碼分析c++中string類-創(chuàng)新互聯(lián)
當(dāng)前地址:http://vcdvsql.cn/article26/hcscg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供標(biāo)簽優(yōu)化虛擬主機網(wǎng)站排名手機網(wǎng)站建設(shè)企業(yè)網(wǎng)站制作云服務(wù)器

廣告

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

外貿(mào)網(wǎng)站建設(shè)