list::list
特定のサイズまたは特定の値の要素または特定のアロケーターとそのほかのリストのすべてまたは一部のコピーとしてリストを構築します。
list( );
explicit list(
const Allocator& _Al
);
explicit list(
size_type _Count
);
list(
size_type _Count,
const Type& _Val
);
list(
size_type _Count,
const Type& _Val,
const Allocator& _Al
);
list(
const list& _Right
);
template<class InputIterator>
list(
InputIterator _First,
InputIterator _Last
);
template<class InputIterator >
list(
InputIterator _First,
InputIterator _Last,
const Allocator& _Al
);
list(
list&& _Right
);
パラメーター
パラメーター |
説明 |
_Al |
このオブジェクトに対して使用するアロケーター クラス。 |
_Count |
構築されたリストの要素の数。 |
_Val |
構築されたリストの要素の値。 |
_Right |
構築されたリストがコピーであることを含むリスト。 |
_First |
コピーする要素範囲内の先頭の要素の位置。 |
_Last |
コピーする要素範囲を超える最初の要素の位置。 |
解説
すべてのコンストラクターは、アロケーター オブジェクト (_Al) を格納し、リストを初期化します。
get_allocator は、リストを構築に使用されるアロケーター オブジェクトのコピーを返します。
最初の 2 のコンストラクターは、空の初期リスト、2 番目のを指定して使用されるアロケーターの型 (_Al) を指定します。
3 つ目のコンストラクターは、クラス **[種類]**の既定の指定された数の要素 (_Count) の繰り返しを指定します。
4 つ目と 5 つ目のコンストラクターは、値 ( _Valの_Count) 要素の繰り返しを指定します。
6 つ目のコンストラクターは、リスト _Rightのコピーを指定します。
次の 2 種類のコンストラクターは、リストの範囲 [_First、_Last) をコピーします。
最後のコンストラクターは、リスト _Rightを実行します。
コンストラクターでは、暫定的な再割り当てを実行しません。
使用例
// list_class_list.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
int main( )
{
using namespace std;
list <int>::iterator c1_Iter, c2_Iter, c3_Iter, c4_Iter, c5_Iter, c6_Iter, c7_Iter;
// Create an empty list c0
list <int> c0;
// Create a list c1 with 3 elements of default value 0
list <int> c1( 3 );
// Create a list c2 with 5 elements of value 2
list <int> c2( 5, 2 );
// Create a list c3 with 3 elements of value 1 and with the
// allocator of list c2
list <int> c3( 3, 1, c2.get_allocator( ) );
// Create a copy, list c4, of list c2
list <int> c4(c2);
// Create a list c5 by copying the range c4[_First, _Last)
c4_Iter = c4.begin( );
c4_Iter++;
c4_Iter++;
list <int> c5( c4.begin( ), c4_Iter );
// Create a list c6 by copying the range c4[_First, _Last) and with
// the allocator of list c2
c4_Iter = c4.begin( );
c4_Iter++;
c4_Iter++;
c4_Iter++;
list <int> c6( c4.begin( ), c4_Iter, c2.get_allocator( ) );
cout << "c1 =";
for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
cout << " " << *c1_Iter;
cout << endl;
cout << "c2 =";
for ( c2_Iter = c2.begin( ); c2_Iter != c2.end( ); c2_Iter++ )
cout << " " << *c2_Iter;
cout << endl;
cout << "c3 =";
for ( c3_Iter = c3.begin( ); c3_Iter != c3.end( ); c3_Iter++ )
cout << " " << *c3_Iter;
cout << endl;
cout << "c4 =";
for ( c4_Iter = c4.begin( ); c4_Iter != c4.end( ); c4_Iter++ )
cout << " " << *c4_Iter;
cout << endl;
cout << "c5 =";
for ( c5_Iter = c5.begin( ); c5_Iter != c5.end( ); c5_Iter++ )
cout << " " << *c5_Iter;
cout << endl;
cout << "c6 =";
for ( c6_Iter = c6.begin( ); c6_Iter != c6.end( ); c6_Iter++ )
cout << " " << *c6_Iter;
cout << endl;
// Move list c6 to list c7
list <int> c7( move(c6) );
list <int>::iterator c7_Iter,
cout << "c7 =" ;
for ( c7_Iter = c7.begin( ) ; c7_Iter != c7.end( ) ; c7_Iter++ )
cout << " " << *c7_Iter;
cout << endl;
}
必要条件
ヘッダー: <list>
名前空間: std