ฉันมีรหัสนี้:
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; // 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 คุณสามารถใช้range-based for loop :
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;
}
สิ่งนี้จะหักล้างและช่วยให้คุณสามารถเข้าถึงองค์ประกอบที่ตัววนซ้ำเปิดอยู่
อีกตัวอย่างหนึ่งสำหรับมาตรฐาน C ++ 11:
set<int> data;
data.insert(4);
data.insert(5);
for (const int &number : data)
cout << number;
คุณทำซ้ำ std :: set อย่างไร?
int main(int argc,char *argv[])
{
std::set<int> mset;
mset.insert(1);
mset.insert(2);
mset.insert(3);
for ( auto it = mset.begin(); it != mset.end(); it++ )
std::cout << *it;
}
for(auto i : mset) std::cout << i;