範囲ベースの for ステートメント (C++)

expressionの各要素に statement を繰り返し、順番に実行します。

for ( for-range-declaration : expression )
   statement 

解説

渡しの例では、繰り返し発生します。std::vector使用できる、またはスコープが begin() と end()によって定義される他のすべてが、STL のシーケンスとして定義されているスコープで" "を実行する必要があるループの構築に for ベースのステートメントをの範囲。for-range-declaration の部分で宣言された名前は for のステートメントに対してローカルで、expression か statementで再宣言することはできません。[auto] のキーワードがステートメントの for-range-declaration の部分で推奨されることに注意してください。

このコードは、配列とベクター内を反復に for の及んだループを使用する方法を示します:

// 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;
}

:出力を次に示します。

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

for ベースの範囲のループが statement のこれらの 1 つが実行すると終了します: ベースのスコープ for ループの外側のステートメント ラベルへの 休憩返します。、または Goto。for ベースの範囲のループの 続行します。 のステートメントは、現在のイテレーションを終了します。

範囲ベースの forに関するこれらの点に注意してください:

  • 自動的に配列を確認します。

  • .begin() と .end()を持つコンテナーを確認します。

  • それ以外でしょうか。の使用 begin() 引数依存の検索と end()。

参照

関連項目

auto キーワード (の型推論)

繰り返しステートメント (C++)

C++ のキーワード

間ステートメント (C++)

do-while ステートメント (C++)

に対するステートメント (C++)