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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER7-7.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;
  10.    c1.push_back( 10 );
  11.    c1.push_back( 11 );
  12.    int& i = c1.front( ); 
  13.    const int& ii = c1.front( );
  14.    cout << "The first integer of c1 is " << i << endl;
  15.    i++;
  16.    cout << "The second integer of c1 is " << ii << endl;
  17.    return 0;
  18. }