CHAPTER8-2.cpp
上传用户:fjc899
上传日期:2007-07-03
资源大小:187k
文件大小:1k
源码类别:

STL

开发平台:

C/C++

  1. //文件名:CHAPTER8-2.cpp
  2. #include <list>
  3. #include <iostream>
  4. #if _MSC_VER > 1020   // if VC++ version is > 4.2
  5.    using namespace std;  // std c++ libs implemented in std
  6. #endif
  7. void main (void) 
  8. {
  9.   list<int> Mylist0;
  10.   Mylist0.push_back(10);
  11.   int temp=Mylist0.back();
  12.   cout<<"List completing, the default constructor is: "<<temp<<std::endl;
  13.   list<int> Mylist1(1,10);
  14.   temp=Mylist1.back();
  15.   cout<<"List completing, the second is: "<<temp<<std::endl;
  16.   list<int> Mylist2(Mylist0);
  17.   temp=Mylist1.back();
  18.   cout<<"List completing, the third is: "<<temp<<std::endl;
  19. }