list::list (STL Samples)
說明如何使用 list::list Visual C++ 標準樣板程式庫 (STL) 函式。
explicit list(
const A& Al = A( )
);
explicit list(
size_type n,
const T& v = T( ),
const A& Al = A( )
);
list(
const list& x
);
list(
const_iterator First,
const_iterator Last,
const A& Al = A( )
);
備註
注意事項 |
---|
在原型中的類別/參數名稱不相符的標頭檔中的版本。某些已修改以提高可讀性。 |
第一個建構函式指定空的初始受控制的序列。 第二個建構函式指定的重複 n 的值的項目 x。 第三個建構函式會指定一份由控制序列 x。 上一次的建構函式指定的順序 [First, Last)。 將所有建構函式配置物件儲存Al,或為複製建構函式,傳回值的 x。get_allocator,在 [資料成員配置器 ,並將初始化受控制的序列。
範例
// list_list.cpp
// compile with: /EHsc
// Demonstrates the different constructors for list<T>
#pragma warning (disable:4786)
#include <list>
#include <string>
#include <iostream>
using namespace std ;
typedef list<string> LISTSTR;
// Try each of the four constructors
int main()
{
LISTSTR::iterator i;
LISTSTR test; // default constructor
test.insert(test.end(), "one");
test.insert(test.end(), "two");
LISTSTR test2(test); // construct from another list
LISTSTR test3(3, "three"); // add several <T>'s
LISTSTR test4(++test3.begin(), // add part of another list
test3.end());
// Print them all out
// one two
cout << "test:";
for (i = test.begin(); i != test.end(); ++i)
cout << " " << *i;
cout << endl;
// one two
cout << "test:";
for (i = test2.begin(); i != test2.end(); ++i)
cout << " " << *i;
cout << endl;
// three three three
cout << "test:";
for (i = test3.begin(); i != test3.end(); ++i)
cout << " " << *i;
cout << endl;
// three three
cout << "test:";
for (i = test4.begin(); i != test4.end(); ++i)
cout << " " << *i;
cout << endl;
}
Output
test: one two
test: one two
test: three three three
test: three three
需求
標頭: <list>