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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER8-15.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;
  11.    list <int>::iterator c1_Iter;
  12.    list <int>::const_iterator c1_cIter;
  13.    c1.push_back( 1 );
  14.    c1.push_back( 2 );
  15.    c1_Iter = c1.begin( );
  16.    cout << "The first element of c1 is " << *c1_Iter << endl;
  17.    *c1_Iter = 20;
  18.    c1_Iter = c1.begin( );
  19.    cout << "The first element of c1 is now " << *c1_Iter << endl;
  20.    // The following line would be an error because iterator is const
  21.    // *c1_cIter = 200;
  22.    return 0;
  23. }