std::set 迭代器取值
时间: 2023-09-25 22:15:37 浏览: 61
C++ 11 std::function和std::bind使用详解
std::set迭代器取值可以使用*运算符。
例如:
```cpp
std::set<int> myset = {1, 2, 3, 4, 5};
std::set<int>::iterator it = myset.begin();
std::cout << *it << std::endl; // 输出1
```
阅读全文