中国开发网: 论坛: 程序员情感CBD: 贴子 67068
MaoMao
msdn的例子供你参考。。。
//////////////////////////////////////////////////////////////////////
//
// Compile options needed: -GX
//
// list.cpp : demonstrates the different constructors for list<T>
//
// Functions:
//
// list::list
//////////////////////////////////////////////////////////////////////

#include <list>
#include <string>
#include <iostream>

using namespace std ;

typedef list<string> LISTSTR;

// Try each of the four constructors
void 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
for (i = test.begin(); i != test.end(); ++i)
cout << *i << " ";
cout << endl;

// one two
for (i = test2.begin(); i != test2.end(); ++i)
cout << *i << " ";
cout << endl;

// three three three
for (i = test3.begin(); i != test3.end(); ++i)
cout << *i << " ";
cout << endl;

// three three
for (i = test4.begin(); i != test4.end(); ++i)
cout << *i << " ";
cout << endl;
}

相关信息:


欢迎光临本社区,您还没有登录,不能发贴子。请在 这里登录