一、string 成員函數大全 構造 string()//構造空字元串 string(const char* s);//拷貝s所指向的字元串序列 string(const char* s, size_t n);//拷貝s所指向的字元串序列的第n個到結尾的字元 string(size_t n, cha ...
一、string 成員函數大全
構造
string()//構造空字元串
string(const char* s);//拷貝s所指向的字元串序列
string(const char* s, size_t n);//拷貝s所指向的字元串序列的第n個到結尾的字元
string(size_t n, char c);//將字元c複製n次
string(const string& str);//拷貝構造函數
string(const string& str, size_t pos, size_t len = npos);//拷貝s中從pos位置起的len個字元,若npos>字元串長度,就拷貝到字元串結尾結束
析構
~string();//刪除字元串
迭代器
/*迭代器*/
iterator begin(); //返回指向字元串第一個字元的迭代器
iterator end(); //返回指向字元串最後一個字元的下一個位置的迭代器
reverse_iterator rbegin(); //返回字元串最後一個字元的反向迭代器
reverse_iterator rend(); //返回指向字元串第一個字元之前的反向迭代器
/*常量迭代器*/
iterator cbegin(); //返回指向字元串第一個字元的迭代器
iterator cend(); //返回指向字元串最後一個字元的下一個位置的迭代器
reverse_iterator rcbegin(); //返回字元串最後一個字元的反向迭代器
reverse_iterator rcend(); //返回指向字元串第一個字元之前的反向迭代器
訪問
reference at(size_type pos);//同char& operator[],返回pos位置字元的引用,字元串可讀可寫
char& back();//返回最後字元的引用
char& front();//返回第一個字元的引用
長度及容量
size_t size();//返回字元串字元個數
size_t length();//返回字元串字元個數
size_t max_size();//返回string對象中可存放的最大字元串的長度
size_t capacity();//返回string分配的存儲容量。
void resize (size_t n);//調整源字元串的長度為n。
void resize (size_t n, char c);//調整字元串長度為n,並用字元c填充不足的部分
void reserve (size_t n = 0);//重新給源字元串分配存儲最小為n的容量
void shrink_to_fit()//清理記憶體,使字元串的容量變得等於字元串的大小
void clear();//將字元串的內容清空,讓源字元串成為一個空字元串(長度為0個字元)
bool empty();//判斷字元串是否為空
修飾
1. append() 在結尾添加字元串
string & append(const string & str)//在結尾添加一個string字元串
string & append(const string & str, size_type subpos, size_type sublen)//追加str中從subpos開始的sublen個字元(子串)
string & append(const charT * s)//C語言字元串
string & append(const charT * s, size_type n)//C語言字元串(長度為n的子串)
string & append(size_type n, charT c)//n個字元c
string & append(InputIterator first, InputIterator last)//使用迭代器append
2. push_back 將字元添加到串尾
void push_back (charT c);//將字元C添加到結尾
3. assign 賦值
string &assign(const char *s);///char*類型的字元串賦給當前字元串
string &assign(const char *s,int n);//用c字元串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 &assign(const_iterator first,const_itertor last);//把first和last迭代器之間的部分賦給字元串
4. insert 在串中間插入
string & insert(size_type pos, const string & str)//在pos位置插入字元串str
string & insert(size_type pos, const string & str,size_type subpos, size_type sublen)//從subpos開始的sublen的子串
string & insert(size_type pos, const charT * s)//C語言字元串
string & insert(size_type pos, const charT * s, size_type n)//C語言字元串(長度為n的子串)
string & insert(size_type pos, size_type n, charT c)//n個字元c
iterator insert(const_iterator p, size_type n, charT c)//使用迭代器索引插入n和字元
iterator insert(const_iterator p, charT c)//單一字元
iterator insert(iterator p, InputIterator first, InputIterator last)//使用迭代器insert
5. erase 刪除字元串中的特定字元
string & erase(size_type pos=0, size_type len=npos)//從pos處刪除len長度的字元
iterator erase(const_iterator p)//刪除迭代器所指的單一字元
iterator erase(const_iterator first, const_iterator last)//刪除2迭代器中間的字元
6. replace 替換字元串的一部分
string & replace(size_type pos,size_type len,const string & str)//從pos位置開始,長度為len的字元替換為str
string & replace(const_iterator i1, const_iterator i2, const string & str)//替換兩迭代器之間的字元
string & replace(size_type pos, size_type len, const string & str,size_type subpos, size_type sublen)//使用子串替換
string & replace(size_type pos, size_type len, const charT * s)//使用C語言字元串
string & replace(const_iterator i1, const_iterator i2, const charT * s)//迭代器方法
string & replace(size_type pos, size_type len, const charT * s, size_type n)//使用子串
string & replace(const_iterator i1, const_iterator i2, const charT * s, size_type n)//迭代器方法
string & replace(size_type pos, size_type len, size_type n, charT c)//用n個字元c替換
string & replace(const_iterator i1, const_iterator i2, size_type n, charT c)//迭代器方法
string & replace(const_iterator i1, const_iterator i2,
InputIterator first, InputIterator last)//迭代器方法
7. swap 交換2字元串
void swap (& str);//交換self和str
8. pop_back 刪除最後一個字元
void pop_back();//刪除串中最後一個字元
操作
1. C_str 轉為C語言字元串
const charT* c_str() const;//返回C語言字元串常量,指向以空字元終止的數組
2. data 轉為C語言字元數組
const charT* data() const;//返回C語言字元串常量,結尾沒有'\0'
3. get_allocator 用於分配記憶體的記憶體塊
allocator_type get_allocator() const;//它返回與容器關聯的分配器對象的副本。yongy
4.copy 複製到字元數組
size_type copy (charT* s, size_type len, size_type pos = 0) const;//從string類型對象中至多複製n個字元到字元指針p指向的空間中。不添加'\0'
5. find 查找
size_type find(const string & str, size_type pos=0) const;//從母字元串的pos位置查找字串str.存在返回字串第一個字元的位置,不存在返回npos
size_type find(const charT * s, size_type pos=0) const;//C語言字元串作為子串
size_type find(const charT * s, size_type pos, size_type n) const;//C語言字元串的子串(長度為n)作為被查找子串
size_type find(charT c, size_type pos=0) const;//查找單個字元
//倒著找
size_type rfind(const string & str, size_type pos=npos) const;
size_type rfind(const charT * s, size_type pos=npos);
size_type rfind(const charT * s, size_type pos, size_type n);
size_type rfind(charT c, size_type pos=npos) const;
//查找字元串中與目標字元(串中任一個字元)相同的第一個字元
size_type find_first_of(const string & str, size_type pos=0) const;
size_type find_first_of(const charT * s, size_type pos=0) const;
size_type find_first_of(const charT * s, size_type pos, size_type n);
size_type find_first_of(charT c, size_type pos=0) const;
//倒著找 or 找最後一個
size_type find_last_of(const string & str, size_type pos=npos) const
size_type find_last_of(const charT * s, size_type pos=npos) const
size_type find_last_of(const charT * s, size_type pos, size_type n) const
size_type find_last_of(charT c, size_type pos=npos) const
//查找字元串中與目標字元(串中任一個字元)不相同的第一個字元
size_type find_first_not_of(const string & str, size_type pos=0) const;
size_type find_first_not_of(const charT * s, size_type pos=0) const;
size_type find_first_not_of(const charT * s, size_type pos, size_type n) const;
size_type find_first_not_of(charT c, size_type pos=0) const;
//倒著找 or 找最後一個
size_type find_last_not_of(const string & str, size_type pos=npos) const ;
size_type find_last_not_of(const charT * s, size_type pos=npos) const;
size_type find_last_not_of(const charT * s, size_type pos, size_type n) const;
size_type find_last_not_of(charT c, size_type pos=npos) const ;
6. substr 子串
string substr (size_type pos = 0, size_type len = npos) const;//返回一個從pos開始,len長度的string類型的子串
7.compare 比較
int compare (const string& str) const ;//比較字元串大小,源串大於str返回值>0,相同=0,小於<0
int compare (size_type pos, size_type len, const string& str) const;//用自身的子串比較
int compare (size_type pos, size_type len, const string& str,
size_type subpos, size_type sublen) const;//兩字元串均為子串
int compare (const charT* s) const;//C語言字元串
int compare (size_type pos, size_type len, const charT* s) const;//C語言字元串子串
int compare (size_type pos, size_type len, const charT* s, size_type n) const;//雙子串
二、符號重載
1. = 賦值
string &operator=(const string &s);//把字元串s賦給當前字元串
string &operator=(const char* s);//char*類型的字元串賦給當前字元串
string &operator=(char c);//單個字元賦給當前字元串
2. [] 訪問
char& operator[] (size_t pos);//返回pos處字元的引用 越界導致未定義行為
3. += 追加
string& operator+= (const string& str);//在結尾加如str字元串,等效於append
string& operator+= (const char* s);//C語言字元串
string& operator+= (char c);//單個字元
三、非成員函數重載
函數/操作 | 作用 |
---|---|
+ | 合併兩個字元串 |
==,>=,<=,!=,>,< | 比較字元串大小 |
>>,<< | 加入輸入輸出流,用於輸入/輸出 |
getline | 讀取一行,存儲在字元串中 |