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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER7-14.cpp
  2. #include <deque>
  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.    deque <int> c1, c2;
  10.    deque <int>::const_iterator cIter;
  11.    c1.push_back( 10 );
  12.    c1.push_back( 20 );
  13.    c1.push_back( 30 );
  14.    c2.push_back( 40 );
  15.    c2.push_back( 50 );
  16.    c2.push_back( 60 );
  17.    cout << "c1 =";
  18.    for ( cIter = c1.begin( ); cIter != c1.end( ); cIter++ )
  19.       cout << " " << *cIter;
  20.    cout << endl;
  21.    c1.assign( ++c2.begin( ), c2.end( ) ); //把c1中的内容用c2中的内容代替,范围是从c2中的第二个元素开始到结束为止。
  22.    cout << "c1 =";
  23.    for ( cIter = c1.begin( ); cIter != c1.end( ); cIter++ )
  24.       cout << " " << *cIter;
  25.    cout << endl;
  26.    c1.assign( 7, 4 ); //把c1中的内容用7个4 代替
  27.    cout << "c1 =";
  28.    for ( cIter = c1.begin( ); cIter != c1.end( ); cIter++ )
  29.       cout << " " << *cIter;
  30.    cout << endl;
  31. return 0;
  32. }