怎么取出set集合中的值C++
时间: 2023-08-12 08:04:10 浏览: 189
在 C++ 中,可以使用迭代器来遍历 set 集合中的元素,然后取出每个元素的值。以下是一个例子:
```cpp
#include <iostream>
#include <set>
int main() {
std::set<int> myset = {1, 3, 5, 7, 9};
// 遍历 set 集合并输出每个元素的值
for (auto it = myset.begin(); it != myset.end(); ++it) {
std::cout << *it << " ";
}
std::cout << std::endl;
return 0;
}
```
输出结果:
```
1 3 5 7 9
```
在上面的例子中,我们定义了一个 `std::set<int>` 类型的 set 集合 `myset`,然后使用迭代器 `it` 遍历 `myset` 中的所有元素,并使用 `*it` 取出每个元素的值。最后将每个元素的值输出到控制台上。
阅读全文