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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER8-11.cpp
  2. #include <iostream>
  3. #include <list>
  4. #if _MSC_VER > 1020   // if VC++ version is > 4.2
  5.    using namespace std;  // std c++ libs implemented in std
  6. #endif
  7. #include <list>
  8. #include <iostream>
  9. int main( )
  10. {
  11.    list <int> c1;
  12.    list <int>::size_type i;
  13.    c1.push_back( 1 );
  14.    i = c1.size( );
  15.    cout << "List length is " << i << "." << endl;
  16.    c1.push_back( 2 );
  17.    i = c1.size( );
  18.    cout << "List length is now " << i << "." << endl;
  19. }