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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER10-12.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;
  10.    int i;
  11.    typedef pair <int, int> Int_Pair;
  12.    m1.insert ( Int_Pair ( 1, 1 ) );
  13.    if ( m1.empty( ) )
  14.       cout << "The multimap m1 is empty." << endl;
  15.    else
  16.       cout << "The multimap m1 is not empty." << endl;
  17.    if ( m2.empty( ) )
  18.       cout << "The multimap m2 is empty." << endl;
  19.    else
  20.       cout << "The multimap m2 is not empty." << endl;
  21. }