CHAPTER8-2.cpp
上传用户:fjc899
上传日期:2007-07-03
资源大小:187k
文件大小:1k
- //文件名:CHAPTER8-2.cpp
- #include <list>
- #include <iostream>
- #if _MSC_VER > 1020 // if VC++ version is > 4.2
- using namespace std; // std c++ libs implemented in std
- #endif
- void main (void)
- {
- list<int> Mylist0;
- Mylist0.push_back(10);
- int temp=Mylist0.back();
- cout<<"List completing, the default constructor is: "<<temp<<std::endl;
- list<int> Mylist1(1,10);
- temp=Mylist1.back();
- cout<<"List completing, the second is: "<<temp<<std::endl;
- list<int> Mylist2(Mylist0);
- temp=Mylist1.back();
- cout<<"List completing, the third is: "<<temp<<std::endl;
- }