标签:com height ima end cto empty int img ons
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中字符串是否为空。"->"将点操作符和解引用操作结合;
1.迭代器与迭代器有减法,无加法。迭代器与整数有加减。
标签:com height ima end cto empty int img ons
原文地址:https://www.cnblogs.com/Mayfly-nymph/p/9060512.html