⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 chapter10-35.cpp

📁 C++STL程序员开发指南
💻 CPP
字号:
//文件名:CHAPTER10-35.cpp
#include <map>
#include <iostream>
#if _MSC_VER > 1020   // if VC++ version is > 4.2
   using namespace std;  // std c++ libs implemented in std
#endif
void main( )
{
   map <int, int, less<int> > m1;
   map <int, int, less<int> >::key_compare kc1 = m1.key_comp( ) ;
   bool result1 = kc1( 2, 3 ) ;
   if( result1 == true )
   {      cout << "kc1( 2,3 ) returns value of true, "
           << "where kc1 is the function object of m1."<< endl;
   }
   else   
   {      cout << "kc1( 2,3 ) returns value of false "
           << "where kc1 is the function object of m1."<< endl;
   }
   map <int, int, greater<int> > m2;
   map <int, int, greater<int> >::key_compare kc2 = m2.key_comp( );
   bool result2 = kc2( 2, 3 ) ;
   if( result2 == true )
   {      cout << "kc2( 2,3 ) returns value of true, "
           << "where kc2 is the function object of m2."<< endl;
   }
   else   
   {      cout << "kc2( 2,3 ) returns value of false, "
           << "where kc2 is the function object of m2."<< endl;
   }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -