首页 > TAG信息列表 > iter0
c++ 迭代器iterator
通过迭代器遍历vector和map的操作见以下链接: c++ vector基本知识 c++ map基本知识 使用迭代器iterator //使用迭代器iterator auto iter0 = v.begin(); //返回第一个元素对应的迭代器 auto iter1 = v.end() ; //返回第最后元素下一位置(不是最后一个元素)对应的迭代器, 称为c++ 迭代器iterator
通过迭代器遍历vector和map的操作见以下链接: c++ vector基本知识 c++ map基本知识 使用迭代器iterator //使用迭代器iterator auto iter0 = v.begin(); //返回第一个元素对应的迭代器 auto iter1 = v.end() ; //返回第最后元素下一位置(不是最后一个元素)对应的迭代器, 称为