我有以下代码:
std::set<unsigned long>::iterator it;
for (it = SERVER_IPS.begin(); it != SERVER_IPS.end(); ++it) {
u_long f = it; // error here
}
没有->first
价值。我如何获得价值?
Answers:
您必须取消引用迭代器才能检索集合的成员。
std::set<unsigned long>::iterator it;
for (it = SERVER_IPS.begin(); it != SERVER_IPS.end(); ++it) {
u_long f = *it; // Note the "*" here
}
如果您具有C ++ 11功能,则可以使用基于范围的for循环:
for(auto f : SERVER_IPS) {
// use f here
}
const u_long& f = *it;
。
只需使用*
之前it
:
set<unsigned long>::iterator it;
for (it = myset.begin(); it != myset.end(); ++it) {
cout << *it;
}
这将取消引用它,并允许您访问迭代器当前所在的元素。