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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER10-24.cpp
  2. #include <map>
  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. void main( )
  8. {
  9.    multimap <int, int> m1, m2, m3;
  10.    multimap <int, int>::iterator m1_Iter;
  11.    typedef pair <int, int> Int_Pair;
  12.    m1.insert ( Int_Pair ( 1, 10 ) );
  13.    m1.insert ( Int_Pair ( 2, 20 ) );
  14.    m1.insert ( Int_Pair ( 3, 30 ) );
  15.    m2.insert ( Int_Pair ( 10, 100 ) );
  16.    m2.insert ( Int_Pair ( 20, 200 ) );
  17.    m3.insert ( Int_Pair ( 30, 300 ) );
  18.    cout << "The original multimap m1 is:";
  19.    for ( m1_Iter = m1.begin( ); m1_Iter != m1.end( ); m1_Iter++ ) cout << " " << m1_Iter -> second;
  20.    cout   << "." << endl;
  21.    // This is the member function version of swap
  22.    m1.swap( m2 );
  23.    cout << "After swapping with m2, multimap m1 is:";
  24.    for ( m1_Iter = m1.begin( ); m1_Iter != m1.end( ); m1_Iter++ ) cout << " " << m1_Iter -> second;
  25.    cout  << "." << endl;
  26.    // This is the specialized template version of swap
  27.    swap( m1, m3 );
  28.    cout << "After swapping with m3, multimap m1 is:";
  29.    for ( m1_Iter = m1.begin( ); m1_Iter != m1.end( ); m1_Iter++ )cout << " " << m1_Iter -> second;
  30.    cout   << "." << endl;
  31. }