Durchlaufen STL-Auflistung mithilfe für jedes
Das for each-Schlüsselwort kann verwendet werden, um über eine Auflistung der C++-Standardbibliothek (STL) zu durchlaufen.
Alle Plattformen
Hinweise
Eine STL-Auflistung wird auch als Container.Weitere Informationen finden Sie unter STL Containers.
Beispiele
Beispiel
Im folgenden Codebeispiel wird for each, um zu <map> zu durchlaufen.
// for_each_stl.cpp
// compile with: /EHsc
#include <map>
#include <iostream>
#include <string>
using namespace std;
int main() {
int retval = 0;
map<string, int> months;
months["january"] = 31;
months["february"] = 28;
months["march"] = 31;
months["april"] = 30;
months["may"] = 31;
months["june"] = 30;
months["july"] = 31;
months["august"] = 31;
months["september"] = 30;
months["october"] = 31;
months["november"] = 30;
months["december"] = 31;
map<string, int> months_30;
for each( pair<string, int> c in months )
if ( c.second == 30 )
months_30[c.first] = c.second;
for each( pair<string, int> c in months_30 )
retval++;
cout << "Months with 30 days = " << retval << endl;
}
Output
Beispiel
Im folgenden Beispielcode wird ein const-Verweis (const&) für eine Iterationsvariable mit STL-Containern.Sie können einen Verweis (&) als Iterationsvariablen für jede Auflistung eines Typs, der als T& deklariert werden kann.
// for_each_stl_2.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
using namespace std;
int main() {
int retval = 0;
vector<int> col(3);
col[0] = 10;
col[1] = 20;
col[2] = 30;
for each( const int& c in col )
retval += c;
cout << "retval: " << retval << endl;
}
Output
Windows-Runtime
Hinweise
Es gibt keine plattformspezifische Hinweise zu dieser Funktion.
Anforderungen
Compileroption: /ZW
Common Language Runtime
Hinweise
Es gibt keine plattformspezifische Hinweise zu dieser Funktion.
Anforderungen
Compileroption: /clr