Range-based for — instrukcja (C++)
Wykonuje wielokrotnie i kolejno statement dla każdego elementu w expression.
for ( for-range-declaration : expression )
statement
Uwagi
Użyj zakresu opartego o instrukcję for do konstruowania pętli, które należy wykonać za pomocą "wielu", który jest zdefiniowany jako wszystko, co można wykonać iteracyjnie — na przykład std::vector lub inną sekwencję STL, której zakres jest określony przez begin() i end().Nazwa, która jest zadeklarowana w części for-range-declaration jest lokalna dla instrukcji for i nie może być ponownie zadeklarowana w expression lub statement.Należy zauważyć, że słowo kluczowe auto jest preferowane w część instrukcji for-range-declaration.
Ten kod pokazuje sposób użycia zakresu pętli for do iteracji po tablicy i wektorze:
// range-based-for.cpp
// compile by using: cl /EHsc /nologo /W4
#include <iostream>
#include <vector>
using namespace std;
int main()
{
// Basic 10-element integer array.
int x[10] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
// Range-based for loop to iterate through the array.
for( int y : x ) { // Access by value using a copy declared as a specific type.
// Not preferred.
cout << y << " ";
}
cout << endl;
// The auto keyword causes type inference to be used. Preferred.
for( auto y : x ) { // Copy of 'x', almost always undesirable
cout << y << " ";
}
cout << endl;
for( auto &y : x ) { // Type inference by reference.
// Observes and/or modifies in-place. Preferred when modify is needed.
cout << y << " ";
}
cout << endl;
for( const auto &y : x ) { // Type inference by reference.
// Observes in-place. Preferred when no modify is needed.
cout << y << " ";
}
cout << endl;
cout << "end of integer array test" << endl;
cout << endl;
// Create a vector object that contains 10 elements.
vector<double> v;
for (int i = 0; i < 10; ++i) {
v.push_back(i + 0.14159);
}
// Range-based for loop to iterate through the vector, observing in-place.
for( const auto &j : v ) {
cout << j << " ";
}
cout << endl;
cout << "end of vector test" << endl;
}
Poniżej przedstawiono dane wyjściowe:
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10
end of integer array test
0.14159 1.14159 2.14159 3.14159 4.14159 5.14159 6.14159 7.14159 8.14159 9.14159
end of vector test
Oparta na zakresie pętla for zostaje zakończona, gdy jeden z statement jest wykonywany: podziału, zwrotu lub goto do oznaczonych instrukcji poza opartą na zakresie petlą for.Instrukcja continue w opartej na zakresie pętli for kończy tylko bieżącą iterację.
Należy pamiętać te fakty dotyczące opartej na zakresie for:
Automatycznie rozpoznaje tablice.
Rozpoznaje pojemniki, które posiadają .begin() i .end().
Używa odnośników zależnych od argumentu begin() i end() tylko w tych przypadkach.