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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER8-6.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. int main( ) 
  8. {  list <int> c1;
  9.    c1.push_front( 1 );
  10.    if ( c1.size( ) != 0 )cout << "First element: " << c1.front( ) << endl;
  11.    c1.push_front( 2 );
  12.    if ( c1.size( ) != 0 )cout << "New first element: " << c1.front( ) << endl;
  13. }