C?++迭代器iterator在string中使用方法介紹
一、正向迭代器

【例子】
//正向迭代器
void test1()
{
string str1 = "abcdef";
cout << "讀取字符串:" << endl;
string::iterator it1 = str1.begin();
while (it1 != str1.end())
{
cout << *it1 << " ";
it1++;
}
cout << endl;
cout << "每個字母向后移動一位:" << endl;
string::iterator it2 = str1.begin();
while (it2 != str1.end())
{
*it2 +=1;
cout << *it2 << " ";
it2++;
}
cout << endl;
}【運行結(jié)果】

二、正向迭代器(只讀數(shù)據(jù))
const_iterator begin( ) const;
這種迭代器,只支持讀,不支持修改數(shù)據(jù)。
【例子】
//只讀正向迭代器
void test2()
{
const string str1 = "abcdef";
cout << "只能讀取字符串:" << endl;
string::const_iterator it1 = str1.begin();
while (it1 != str1.end())
{
cout << *it1 << " ";
it1++;
}
cout << endl;
}
【問題】
為什么不能直接在 string::iterator it 前面加const?
答:這樣的話,const修飾的是it,it將無法被修改,并不是*it無法被修改。
it無法被修改的后果是無法遍歷。
三、反向迭代器

作用:從后往前讀。
【例子】
//反向迭代器
void test3()
{
string str1 = "abcdef";
cout << "反向讀取字符串:" << endl;
string::reverse_iterator it1 = str1.rbegin();
while (it1 != str1.rend())
{
*it1 += 1;
cout << *it1 << " ";
it1++;
}
cout << endl;
}
【運行結(jié)果】

四、反向迭代器(只讀)
【例子】
//反向迭代器(只讀)
void test4()
{
const string str1 = "abcdef";
cout << "反向只讀讀取字符串:" << endl;
string::const_reverse_iterator it1 = str1.rbegin();
while (it1 != str1.rend())
{
cout << *it1 << " ";
it1++;
}
cout << endl;
}五、auto來替換這些特別長類型名
是不是感覺這些類型名特別長?別擔(dān)心,用auto試試。
//auto
void test5()
{
cout << "auto的演示" << endl;
const string str1 = "abcdef";
cout << "反向只讀讀取字符串:" << endl;
auto it1 = str1.rbegin();
while (it1 != str1.rend())
{
cout << *it1 << " ";
it1++;
}
cout << endl;
}
到此這篇關(guān)于C ++迭代器iterator在string中使用方法介紹的文章就介紹到這了,更多相關(guān)C ++迭代器iterator內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
c++中vector<int>和vector<int*>的用法及區(qū)別
這篇文章主要介紹了c++中vector<int>和vector<int*>的用法及區(qū)別,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2013-10-10
C++編程語言中賦值運算符重載函數(shù)(operator=)的使用
本文主要介紹了C++編程語言中賦值運算符重載函數(shù)(operator=)介紹,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2022-06-06
C語言中字符和字符串處理(ANSI字符和Unicode字符)
這篇文章主要介紹了C語言與C++中字符和字符串處理(ANSI字符和Unicode字符)的詳細內(nèi)容,非常的全面,這里推薦給大家,希望大家能夠喜歡。2015-03-03

