STL_string容器

東南亞季風發表於2021-01-23

一、string概念

string是STL的字串型別,通常用來表示字串。而在使用string之前,字串通常是用char*表示的。string與char*都可以用來表示字串,那麼二者有什麼區別。

string和char*的比較:

  • string是一個類, char*是一個指向字元的指標。

    ​ string封裝了char*,管理這個字串,是一個char*型的容器。

  • string不用考慮記憶體釋放和越界。

    ​ string管理char*所分配的記憶體。每一次string的複製,取值都由string類負責維護,不用擔心複製越界和取值越界等。

  • string提供了一系列的字串操作函式

    ​ 查詢find,拷貝copy,刪除erase,替換replace,插入insert

//string 轉 char*
string str_1="string";
const char* cstr_1=str.c_str();
//char* 轉 string
char* cstr_2="char";
string str_2(cstr);

二、string的建構函式

  1. 預設建構函式:string(); //構造一個空的字串string s1。

  2. 建構函式:string(const string &str); //構造一個與str一樣的string。如string s1(s2)。

  3. 帶引數的建構函式:

    string(const char *s); //用字串s初始化

    string(int n,char c); //用n個字元c初始化

	string s1; //呼叫無參構造
	string s2(10, 'a');
	string s3("abcdefg");
	string s4(s3); //拷貝構造

	cout << s1 << endl;
	cout << s2 << endl;
	cout << s3 << endl;
	cout << s4 << endl;
/*
結果:

aaaaaaaaaa
abcdefg
abcdefg
*/

三、string的存取字元操作

string類的字元操作:

  • const char &operator[] (int n) const; //通過[]方式取字元
  • const char &at(int n) const; //通過at方法獲取字元
  • char &operator[] (int n);
  • char &at(int n);

operator[]和at()均返回當前字串中第n個字元,但二者是有區別的。

主要區別在於at()在越界時會丟擲異常,[]在剛好越界時會返回(char)0,再繼續越界時,編譯器直接出錯。如果你的程式希望可以通過try,catch捕獲異常,建議採用at()。

	string s1 = "abcdefg";

	//過載[]操作符
	for (int i = 0; i < s1.size(); i++) {
		cout << s1[i] << " ";
	}
	cout << endl;

	//at成員函式
	for (int i = 0; i < s1.size(); i++) {
		cout << s1.at(i) << " ";
	}
	cout << endl;

	//區別:[]方式 如果訪問越界,直接掛了
	//at方式 訪問越界 拋異常out_of_range

	try {
		//cout << s1[100] << endl;
		cout << s1.at(100) << endl;
	}
	catch (...) {
		cout << "越界!" << endl;
	}
/*
結果:
a b c d e f g
a b c d e f g
越界!
*/

四、從string取得const char*的操作

const char *c_str() const; //返回一個以'\0'結尾的字串的首地址

//string 轉 char*
string str_1="string";
const char *cstr_1=str.c_str();

五、把string拷貝到char*指向的記憶體空間的操作

int copy(char *s, int n, int pos=0) const;

把當前串中以pos開始的n個字元拷貝到以s為起始位置的字元陣列中,返回實際拷貝的數目。注意要保證s所指向的空間足夠大以容納當前字串,不然會越界。

	string s1 = "abcdefg";
	int n = 5;pose
	int pose = 3;

	char* s2 = (char*)malloc(n*sizeof(char));
	if(s1.copy(s2, n, pose))
		cout << s2 ;
	else cout<<"error"<<endl;
/*
結果:
def
*/

六、string的長度

int length() const; //返回當前字串的長度。長度不包括字串結尾的'\0'。

bool empty() const; //當前字串是否為空

	string s1 = "abcdefg";
	string s2 = "";

	int s1_length=s1.length();  
	bool s1_empty = s1.empty();
	int s2_length = s2.length();  
	bool s2_empty = s2.empty();
	
	cout << s1_length << "     " << s1_empty << endl;
	cout << s2_length << "     " << s2_empty << endl;
/*
結果:
7     0
0     1
*/

七、string的賦值

string &operator=(const string &s);//把字串s賦給當前的字串

string &assign(const char *s); //把字串s賦給當前的字串

string &assign(const char *s, int n); //把字串s的前n個字元賦給當前的字串

string &assign(const string &s); //把字串s賦給當前字串

string &assign(int n,char c); //用n個字元c賦給當前字串

string &assign(const string &s,int start, int n); //把字串s中從start開始的n個字元賦給當前字串

	string s1;
	string s2("appp");
	s1 = "abcdef";
	cout << s1 << endl;
	s1 = s2;
	cout << s1 << endl;
	s1 = 'a';
	cout << s1 << endl;

	//成員方法assign
	s1.assign("jkl");
	cout << s1 << endl;
/*
結果:
abcdef
appp
a
jkl
*/

八、string字串連線

string &operator+=(const string &s); //把字串s連線到當前字串結尾

string &operator+=(const char *s);//把字串s連線到當前字串結尾

string &append(const char *s); //把字串s連線到當前字串結尾

string &append(const char *s,int n); //把字串s的前n個字元連線到當前字串結尾

string &append(const string &s); //同operator+=()

string &append(const string &s,int pos, int n);//把字串s中從pos開始的n個字元連線到當前字串結尾

string &append(int n, char c); //在當前字串結尾新增n個字元c

	string s = "abcd";
	string s2 = "1111";
	s += "abcd";
	s += s2;
	cout << s << endl;

	string s3 = "2222";
	s2.append(s3);
	cout << s2 << endl;

	string s4 = s2 + s3;
	cout << s4 << endl;
/*
結果:
abcdabcd1111
11112222
111122222222
*/

九、string的比較

int compare(const string &s) const; //與字串s比較

int compare(const char *s) const; //與字串s比較

compare函式在>時返回 1,<時返回 -1,==時返回 0。比較區分大小寫,比較時參考字典順序,排越前面的越小。大寫的A比小寫的a小。

	string s1 = "abcd";
	string s2 = "abce";
	if (s1.compare(s2)==0) {
		cout << "字串相等!" << endl;
	}
	else {
		cout << "字串不相等!" << endl;
	}

十、string的子串

string substr(int pos=0, int n=npos) const; //返回由pos開始的n個字元組成的子字串

	string s = "abcdefg";
	string mysubstr = s.substr(1, 3);
	cout << mysubstr << endl;
/*
結果:
bcd
*/

十一、string的查詢和替換

查詢

int find(char c,int pos=0) const; //從pos開始查詢字元c在當前字串的位置

int find(const char *s, int pos=0) const; //從pos開始查詢字串s在當前字串的位置

int find(const string &s, int pos=0) const; //從pos開始查詢字串s在當前字串中的位置

//find函式如果查詢不到,就返回-1

int rfind(char c, int pos=npos) const; //從pos開始從後向前查詢字元c在當前字串中的位置

int rfind(const char *s, int pos=npos) const;

int rfind(const string &s, int pos=npos) const;

//rfind是反向查詢的意思,如果查詢不到, 返回-1

替換

string &replace(int pos, int n, const char *s);//刪除從pos開始的n個字元,然後在pos處插入串s

string &replace(int pos, int n, const string &s); //刪除從pos開始的n個字元,然後在pos處插入串s

void swap(string &s2); //交換當前字串與s2的值

	// 字串的查詢和替換
    string s1 = "wbm hello wbm 111 wbm 222 wbm 333";
    size_t index = s1.find("wbm", 0);
    cout << "index: " << index;  

    //求itcast出現的次數
    size_t offindex = s1.find("wbm", 0);
    while (offindex != string::npos){

         cout << "在下標index: " << offindex << "找到wbm\n";
         offindex = offindex + 1;
         offindex = s1.find("wbm", offindex);
    } 

    //替換 
    string s2 = "wbm hello wbm 111 wbm 222 wbm 333";
    s2.replace(0, 3, "wbm");
    cout << s2 << endl; 

    //求itcast出現的次數
    offindex = s2.find("wbm", 0);
    while (offindex != string::npos){

         cout << "在下標index: " << offindex << "找到wbm\n";
         s2.replace(offindex, 3, "WBM");
         offindex = offindex + 1;
         offindex = s1.find("wbm", offindex);
    }
    cout << "替換以後的s2:" << s2 << endl; 
/*
結果:
index: 0在下標index: 0找到wbm
在下標index: 10找到wbm
在下標index: 18找到wbm
在下標index: 26找到wbm
wbm hello wbm 111 wbm 222 wbm 333
在下標index: 0找到wbm
在下標index: 10找到wbm
在下標index: 18找到wbm
在下標index: 26找到wbm
替換以後的s2:WBM hello WBM 111 WBM 222 WBM 333
*/

十二、String的區間刪除和插入

string &insert(int pos, const char *s);

string &insert(int pos, const string &s);//在pos位置插入字串s

string &insert(int pos, int n, char c); //在pos位置 插入n個字元c

string &erase(int pos=0, int n=npos); //刪除pos開始的n個字元,返回修改後的字串

	string s = "abcdefg";
	s.insert(3, "111");
	cout << s << endl;

	s.erase(0, 2);
	cout << s << endl;
/*
結果:
abc111defg
c111defg
*/

相關文章