Chinaunix首页 | 论坛 | 博客
  • 博客访问: 425773
  • 博文数量: 116
  • 博客积分: 7087
  • 博客等级: 少将
  • 技术积分: 1175
  • 用 户 组: 普通用户
  • 注册时间: 2005-02-19 23:32
文章分类

全部博文(116)

文章存档

2012年(1)

2011年(2)

2010年(10)

2009年(21)

2008年(18)

2007年(12)

2006年(21)

2005年(31)

我的朋友

分类:

2005-03-28 11:14:05

采用List容器类,写的第二个STL演示程序.之后准备往其中填入自己的对象.

#include
#include
#include
namespace std {} using namespace std;
int main()
{
  string *myword;
  myword=new string("List is:");
  cout<< myword->c_str()<  delete myword;
  list L;
  L.push_back(0);
  L.push_front(1);
  L.insert(++L.begin(), 2);
  copy(L.begin(), L.end(), ostream_iterator(cout, " "));
  cout<  return 0;
}

阅读(920) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~