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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER9-12.cpp
  2. #include <set>
  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.    multiset <int> ms1, ms2;
  10.    ms1.insert ( 1 );
  11.    if ( ms1.empty( ) )
  12.       cout << "The multiset ms1 is empty." << endl;
  13.    else
  14.       cout << "The multiset ms1 is not empty." << endl;
  15.    if ( ms2.empty( ) )
  16.       cout << "The multiset ms2 is empty." << endl;
  17.    else
  18.       cout << "The multiset ms2 is not empty." << endl;
  19. }