STL(十七)string基本字串行容器

2021-08-07 16:09:51 字數 415 閱讀 5812

一、string技術原理

字串由乙個個字元組成,字元分為單位元組char和雙位元組wchar_t兩種。因此,構造泛型的字串類,必須適用於以上兩種型別的字元。

單位元組的字串型別string和雙位元組的字串型別wstring

二、string應用基礎

#include

1、建立string物件

2、字元的新增

3、字元的遍歷訪問

iterator  begin()

iterator  end()

reverse_iterator   rbegin()

reverse_iterator   rend()

4、字元的刪除

5、字元的替換

6、字元的搜尋

7、字串的比較

8、其他的常用函式

string基本字元容器

使用string容器,需要標頭檔案 include,下面介紹string的幾種用法 1.建立string物件 string s 2.給string物件賦值 2.1 直接賦值 s abcdfeg 2.2用字元指標賦值 string s char ss 100 scanf s ss s ss 注意 sc...

String 基本字元操作

排序比較 大小寫切換 判斷首尾字元 替換去除首尾空格 example trap int indexof int ch 返回指定字元在此字串中第一次出現處的索引。intindexof string str 返回指定子字串在此字串中第一次出現處的索引。intindexof int ch,int from...

String基本字元系列容器

1 建立s 空字串 include include include include include include include includeusing namespace std int main string s cout 2 基本字元系列容器給string物件賦值 直接給字串物件賦值 in...