私はこのコードを持っています:
std::set<unsigned long>::iterator it;
for (it = SERVER_IPS.begin(); it != SERVER_IPS.end(); ++it) {
u_long f = it; // error here
}
->first
価値はありません。どのようにして値を取得できますか?
回答:
セットのメンバーを取得するには、イテレーターを逆参照する必要があります。
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;
}
これはそれを逆参照し、イテレータが現在ある要素にアクセスできるようにします。