码迷,mamicode.com
首页 > 其他好文 > 详细

less的用法

时间:2014-10-11 15:23:25      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   sp   div   

less主要是重载了operator()方法,用来比较lhs 和 rhs

std::less::operator()

bool operator()(const T &lhs, const T &rhs) const; 

constexpr bool operator()(const T &lhs, const T &rhs) const ;

 

内部实现:

constexpr bool operator()(const T &lhs, const T &rhs) const

{

  return lhs < rhs;

}

如果lhs比rhs小,就返回true;如果lhs比rhs大,就返回false;

 

例子:

#include <functionl>
#include <iostream>
using namespace std;
template <typename A, typename B, typename U = less<int>>
bool m(A a, B b, U u = U())
{
  return u(a,b);
}

int main()
{
  cout << less<int>()(10, 12) <<eendl;
  cout << less<int>()(12, 10) << endl;
  cout << m(10, 12) << endl;
}

 

输出结果:

true

false

true

 

 

  


 

less的用法

标签:style   blog   http   color   io   os   ar   sp   div   

原文地址:http://www.cnblogs.com/457220157-FTD/p/4018742.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!