網站首頁 編程語言 正文
一、正向迭代器
【例子】
//正向迭代器
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;
}
【運行結果】
二、正向迭代器(只讀數據)
const_iterator begin( ) const;
這種迭代器,只支持讀,不支持修改數據。
【例子】
//只讀正向迭代器
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;
}
【運行結果】
四、反向迭代器(只讀)
【例子】
//反向迭代器(只讀)
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來替換這些特別長類型名
是不是感覺這些類型名特別長?別擔心,用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;
}
原文鏈接:https://blog.csdn.net/m0_54381284/article/details/127548820
相關推薦
- 2022-04-12 C#實現六大設計原則之迪米特法則_C#教程
- 2023-11-18 Linux中ARM設備Linux 使用iperf3測量網絡帶寬
- 2022-10-29 SQL?Server主鍵約束(PRIMARY?KEY)_MsSql
- 2022-08-21 jQuery實現簡易商城系統項目實操_jquery
- 2022-06-30 Python中隱藏的五種實用技巧分享_python
- 2022-08-06 QT生成隨機驗證碼的方法_C 語言
- 2022-11-13 Git實現克隆歷史的某個版本_相關技巧
- 2022-11-06 Golang安裝和使用protocol-buffer流程介紹_Golang
- 最近更新
-
- window11 系統安裝 yarn
- 超詳細win安裝深度學習環境2025年最新版(
- Linux 中運行的top命令 怎么退出?
- MySQL 中decimal 的用法? 存儲小
- get 、set 、toString 方法的使
- @Resource和 @Autowired注解
- Java基礎操作-- 運算符,流程控制 Flo
- 1. Int 和Integer 的區別,Jav
- spring @retryable不生效的一種
- Spring Security之認證信息的處理
- Spring Security之認證過濾器
- Spring Security概述快速入門
- Spring Security之配置體系
- 【SpringBoot】SpringCache
- Spring Security之基于方法配置權
- redisson分布式鎖中waittime的設
- maven:解決release錯誤:Artif
- restTemplate使用總結
- Spring Security之安全異常處理
- MybatisPlus優雅實現加密?
- Spring ioc容器與Bean的生命周期。
- 【探索SpringCloud】服務發現-Nac
- Spring Security之基于HttpR
- Redis 底層數據結構-簡單動態字符串(SD
- arthas操作spring被代理目標對象命令
- Spring中的單例模式應用詳解
- 聊聊消息隊列,發送消息的4種方式
- bootspring第三方資源配置管理
- GIT同步修改后的遠程分支