chapter8-2.cpp

来自「C++STL程序员开发指南」· C++ 代码 · 共 20 行

CPP
20
字号
//文件名: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;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?