deque::begin と deque::end
Visual C++ で deque:: begin と deque:: 終了 の標準テンプレート ライブラリ関数を使用する方法に (STL) ついて説明します。
const_iterator begin( ) const;
iterator begin( );
const_iterator end( ) const;
iterator end( );
解説
[!メモ]
プロトタイプのクラスやパラメーター名はヘッダー ファイルのバージョンと一致しない。ただし読みやすさが向上するように変更されました。
begin のメンバー関数はシーケンスの場合または空のシーケンスの末尾を超える最初の要素を指すランダム アクセス反復子を返します。 終了 のメンバー関数はシーケンスの末尾の次の位置を指し示すランダム アクセス反復子を返します。
使用例
// begin.cpp
// compile with: /EHsc
//
// Functions:
//
// begin()
// end()
#include <iostream>
#include <deque>
using namespace std;
typedef deque<int > INTDEQUE;
int main()
{
// Create A and fill it with elements 1,2,3,4 and 5
// using push_back function
INTDEQUE A;
A.push_back(1);
A.push_back(2);
A.push_back(3);
A.push_back(4);
A.push_back(5);
// Print the contents of A using iterator
// and functions begin() and end()
INTDEQUE::iterator pi;
for(pi= A.begin(); pi !=A.end(); pi++)
{
cout << *pi <<" " ;
}
cout<<endl;
}
出力
1 2 3 4 5
必要条件
ヘッダー : <deque>