在C++中,可以使用迭代器(iterator)來遍歷std::set
。std::set
是一個有序集合,其中的元素會自動按鍵排序。以下是一個使用范圍for循環遍歷std::set
的示例:
#include <iostream>
#include <set>
int main() {
std::set<int> my_set = {1, 2, 3, 4, 5};
for (const auto& element : my_set) {
std::cout << element << " ";
}
return 0;
}
在這個示例中,我們創建了一個包含整數的std::set
,然后使用范圍for循環遍歷集合中的每個元素。注意,由于std::set
中的元素是唯一的,所以輸出的順序可能與插入順序不同。