std::next
是一個函數模板,用于返回指向給定迭代器位置之后第 n 個元素的迭代器。它通常用于在迭代器序列中移動到指定位置。
#include <iostream>
#include <vector>
#include <iterator>
int main() {
std::vector<int> vec = {1, 2, 3, 4, 5};
// 獲取迭代器指向第3個元素
auto it = std::next(vec.begin(), 2);
std::cout << *it << std::endl; // 輸出: 3
return 0;
}
在上面的示例中,std::next
函數被用來獲取一個迭代器,該迭代器指向 vec
容器中的第3個元素。