码迷,mamicode.com
首页 > 其他好文 > 详细

3.4迭代器介绍

时间:2018-05-19 17:13:08      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:com   height   ima   end   cto   empty   int   img   ons   

3.4.1 使用迭代器

1.begin和end,begin指向第一个元素,end指向尾元素的下一个位置。end返回的迭代器被称为尾后迭代器。(end和begin返回为位置(指看成指针))

若容器为空,则begin和end返回的都是尾后迭代器。

 

2.迭代器与迭代器有减法,无加法。迭代器与整数有加减。

 

3.迭代器类型:

技术分享图片

 

4.

const vector<int> cv;
auto it1 = v.begin();//it1的类型是vector<int>::iterator
auto it2 = cv.begin();//it2的类型是vector<int>::const_iterator

现在使用cbegin()和cend()

 

5.(*it).empty()//迭代器it,检查it中字符串是否为空。"->"将点操作符和解引用操作结合;

 

3.4.2 迭代器计算

1.迭代器与迭代器有减法,无加法。迭代器与整数有加减。

3.4迭代器介绍

标签:com   height   ima   end   cto   empty   int   img   ons   

原文地址:https://www.cnblogs.com/Mayfly-nymph/p/9060512.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!