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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER10-35.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.    map <int, int, less<int> > m1;
  10.    map <int, int, less<int> >::key_compare kc1 = m1.key_comp( ) ;
  11.    bool result1 = kc1( 2, 3 ) ;
  12.    if( result1 == true )
  13.    {      cout << "kc1( 2,3 ) returns value of true, "
  14.            << "where kc1 is the function object of m1."<< endl;
  15.    }
  16.    else   
  17.    {      cout << "kc1( 2,3 ) returns value of false "
  18.            << "where kc1 is the function object of m1."<< endl;
  19.    }
  20.    map <int, int, greater<int> > m2;
  21.    map <int, int, greater<int> >::key_compare kc2 = m2.key_comp( );
  22.    bool result2 = kc2( 2, 3 ) ;
  23.    if( result2 == true )
  24.    {      cout << "kc2( 2,3 ) returns value of true, "
  25.            << "where kc2 is the function object of m2."<< endl;
  26.    }
  27.    else   
  28.    {      cout << "kc2( 2,3 ) returns value of false, "
  29.            << "where kc2 is the function object of m2."<< endl;
  30.    }
  31. }