在C++中,可以使用迭代器來遍歷set容器。以下是一個簡單的示例:
#include <iostream>
#include <set>
int main() {
std::set<int> mySet = {1, 2, 3, 4, 5};
for (auto it = mySet.begin(); it != mySet.end(); ++it) {
std::cout << *it << " ";
}
return 0;
}
在這個示例中,首先創(chuàng)建了一個包含一些整數(shù)的set容器。然后使用迭代器it
來遍歷set容器,并打印每個元素的值。最后輸出結(jié)果為:1 2 3 4 5。