类模板
<functional>

std::less_equal

template <class T> struct less_equal;
用于小于等于比较的函数对象类
二元函数对象类,其调用返回其第一个参数是否小于等于第二个参数(由 operator <= 返回)。

泛指,函数对象 是一个类的实例,该类定义了成员函数operator()。这个成员函数允许对象以与函数调用相同的语法使用。

它的定义与以下行为相同:

1
2
3
template <class T> struct less_equal : binary_function <T,T,bool> {
  bool operator() (const T& x, const T& y) const {return x<=y;}
};
1
2
3
4
5
6
template <class T> struct less_equal {
  bool operator() (const T& x, const T& y) const {return x<=y;}
  typedef T first_argument_type;
  typedef T second_argument_type;
  typedef bool result_type;
};

此类对象可用于标准算法,例如 sortmergelower_bound

模板参数

T
函数调用中用于比较的参数类型。
类型应支持运算(operator<=)。

成员类型

成员类型定义说明
first_argument_typeT成员 operator() 的第一个参数的类型
second_argument_typeT成员 operator() 的第二个参数的类型
result_typebool成员 operator() 返回的类型

成员函数

bool operator() (const T& x, const T& y)
成员函数,返回第一个参数是否小于等于第二个参数 (x<=y)。

示例

1
2
3
4
5
6
7
8
9
10
11
// less_equal example
#include <iostream>     // std::cout
#include <functional>   // std::less_equal, std::bind2nd
#include <algorithm>    // std::count_if

int main () {
  int numbers[]={25,50,75,100,125};
  int cx = std::count_if (numbers, numbers+5, std::bind2nd(std::less_equal<int>(),100));
  std::cout << "There are " << cx << " elements lower than or equal to 100.\n";
  return 0;
}

输出

There are 4 elements lower or equal to 100.


另见