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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER8-21.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. int main( ) 
  8. {
  9.    using namespace std;
  10.    list<int> c1, c2;
  11.    list<int>::const_iterator cIter;
  12.    c1.push_back( 10 );
  13.    c1.push_back( 20 );
  14.    c1.push_back( 30 );
  15.    c2.push_back( 40 );
  16.    c2.push_back( 50 );
  17.    c2.push_back( 60 );
  18.    cout << "c1 =";
  19.    for ( cIter = c1.begin( ); cIter != c1.end( ); cIter++ )
  20.       cout << " " << *cIter;
  21.    cout << endl;
  22.    c1.assign( ++c2.begin( ), c2.end( ) );
  23.    cout << "c1 =";
  24.    for ( cIter = c1.begin( ); cIter != c1.end( ); cIter++ )
  25.       cout << " " << *cIter;
  26.    cout << endl;
  27.    c1.assign( 7, 4 );
  28.    cout << "c1 =";
  29.    for ( cIter = c1.begin( ); cIter != c1.end( ); cIter++ )
  30.       cout << " " << *cIter;
  31.    cout << endl;
  32.    return 0;
  33. }