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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER9-36.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. void main( )
  8. {
  9.    multiset <int, less<int> > ms1;
  10.    multiset <int, less<int> >::value_compare vc1 = ms1.value_comp( );
  11.    bool result1 = vc1( 2, 3 );
  12.    if( result1 == true )   
  13.    {
  14.       cout << "vc1( 2,3 ) returns value of true, "<< "where vc1 is the function object of ms1."
  15.            << endl;
  16.    }
  17.    else   
  18.    {
  19.       cout << "vc1( 2,3 ) returns value of false, "<< "where vc1 is the function object of ms1."
  20.            << endl;
  21.    }
  22.    set <int, greater<int> > ms2;
  23.    set<int, greater<int> >::value_compare vc2 = ms2.value_comp( );
  24.    bool result2 = vc2( 2, 3 );
  25.    if( result2 == true )   
  26.    {
  27.       cout << "vc2( 2,3 ) returns value of true, "<< "where vc2 is the function object of ms2."
  28.            << endl;
  29.    }
  30.    else   
  31.    {
  32.       cout << "vc2( 2,3 ) returns value of false, "<< "where vc2 is the function object of ms2."
  33.            << endl;
  34.    }
  35. }