在C++中,可以使用迭代器來遍歷切片(即vector、array或其他序列容器),以下是一個簡單的示例:
#include <iostream>
#include <vector>
int main() {
std::vector<int> vec = {1, 2, 3, 4, 5};
// 使用迭代器遍歷vector
for (std::vector<int>::iterator it = vec.begin(); it != vec.end(); ++it) {
std::cout << *it << " ";
}
std::cout << std::endl;
return 0;
}
在上面的示例中,我們使用std::vector<int>::iterator
來聲明迭代器it
,然后通過vec.begin()
和vec.end()
來獲取切片的起始和結束位置,然后使用迭代器it
來遍歷切片并輸出每個元素的值。
除了使用for循環外,還可以使用range-based for循環簡化代碼:
#include <iostream>
#include <vector>
int main() {
std::vector<int> vec = {1, 2, 3, 4, 5};
// 使用range-based for循環遍歷vector
for (int num : vec) {
std::cout << num << " ";
}
std::cout << std::endl;
return 0;
}
這樣就可以更簡潔地遍歷切片。